标签:loading 转换 inf mktime 结束 字符 mtime png cti
------------恢复内容开始------------
# 时间分为3中格式:
# 1.时间戳:从1970年到现在经过的秒数
# 作用 用于时间间隔的计算
print(time.time())
# 2.按照某种格式显示的时间:2020-01-30 11:11:11
# 作用:用于展示时间
print(time.strftime(‘%Y-%m-%d %H:%M:%S %p‘))
# 3.结构化的时间
# 作用:用于单独获取时间的某一部分
res=time.localtime()
# 时间模块需要掌握的操作
# 1.时间格式的转换
# struct_time->时间戳
# s_time=time.localtime()
# print(time.mktime(s_time))
# 时间戳->struct_time
# tp_time=time.time()
# print(time.localtime(tp_time))
# 补充:世界时间和本地时间
# print(time.localtime()) #中国时间
# print(time.gmtime()) #世界标准时间
# struct_time->格式化的字符串的时间
# s_time=time.localtime()
# print(time.strftime(‘%Y-%m-%d %H-%M-%S‘, s_time))
# 格式化的字符串的时间->struct_time
print(time.strptime(‘2020-07-19 11:11:11‘, ‘%Y-%m-%d %H:%M:%S‘))
# format string<--->timestamp
struct_time=time.strptime(‘2020-09-09 11:11:11‘,‘%Y-%m-%d %H:%M:%S‘)
timestamp=time.mktime(struct_time)+7*24*3600
print(timestamp)
res=time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(timestamp))
print(res)
------------恢复内容结束------------
time.sleep(3)
print(time.asctime())
标签:loading 转换 inf mktime 结束 字符 mtime png cti
原文地址:https://www.cnblogs.com/jacobshuo/p/14668451.html