Python 练习实例10

来源:互联网 发布:在线查询域名被墙 编辑:程序博客网 时间:2024/05/21 14:44

题目:暂停一秒输出,并格式化当前时间。



程序


import timeprint(time.strftime('%Y.%m.%d %H:%M:%S',time.localtime(time.time())))time.sleep(1)print(time.strftime('%Y.%m.%d %H:%M:%S',time.localtime(time.time())))

原创粉丝点击