暂停一秒输出,并格式化当前时间。
time 模块的格式化时间函数
import time print(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime())) # 暂停一秒 time.sleep(1) print(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()))