Python练习实例010
问题:暂停一秒输出,并格式化当前时间。
#! /usr/bin/env python3 # -*- coding:utf-8 -*- # Author : Ma Yi # Blog : http://www.cnblogs.com/mayi0312/ # Date : 2020-06-18 # Name : demo010 # Software : PyCharm # Note : 暂停一秒输出,并格式化当前时间。 import time # 入口函数 if __name__ == '__main__': 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()))
运行结果:
2020-06-18 16:44:49 2020-06-18 16:44:50