标签:author strftime oca 当前时间 localtime 题目 env highlight python3
题目八:暂停一秒输出,并格式化当前时间。
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ 题目八:暂停一秒输出,并格式化当前时间。""" __author__ = ‘Fan Lijun‘ import time print(time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(time.time()))) # 暂停一秒 time.sleep(1) print(time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(time.time())))
标签:author strftime oca 当前时间 localtime 题目 env highlight python3
原文地址:https://www.cnblogs.com/LoveBeautiful/p/9907505.html