Live2D

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

 

posted @ 2020-06-18 16:45  骑着螞蟻流浪  阅读(169)  评论(0编辑  收藏  举报