用来练手的python 练习题,原链接 : python练习实例9
题干 :
暂停两秒输出,并格式化当前时间。
import time,datetime
TIME = datetime.datetime.now()
print(TIME.strftime("%Y.%m.%d %H-%M-%S"))
time.sleep(2)
TIME = datetime.datetime.now()
print(TIME.strftime("%Y.%m.%d %H-%M-%S"))
输出结果如下:
输出当前时间的格式化输出比较特别,用的是%Y,%m,%d 年月日,以及%H %M %S 小时,分钟,秒。