题目 暂停一秒输出(使用 time 模块的 sleep() 函数)。循环输出当前时间。
代码:
import time while True: time.sleep(1) print(time.strftime("%Y-%m-%d %H:%M:%S ",time.localtime(time.time())))
结果:
原文地址:https://www.cnblogs.com/angellyl/p/10930670.html
时间: 2024-10-14 16:43:58
题目 暂停一秒输出(使用 time 模块的 sleep() 函数)。循环输出当前时间。
代码:
import time while True: time.sleep(1) print(time.strftime("%Y-%m-%d %H:%M:%S ",time.localtime(time.time())))
结果:
原文地址:https://www.cnblogs.com/angellyl/p/10930670.html