标签:不同的 第几天 strftime time() sds 入门 roc process str
time模块:
import time
--时间模块
--time : 三种不同的时间格式,可以相互转换
--从1970年1月1日00:00:00开始按秒计算的偏移量
time_stamp = time.time()
print(time_stamp)
格式化时间(format string):
--普通的字符串格式的时间
format_time = time.strftime("%Y-%m-%d %X")
print(format_time)
结构化时间(struct time):
--struct_time元组共有9个元素共九个元素,分别为(年,月,日,时,分,秒,一年中第几周,一年中第几天,夏令时)
#
print(format(time.localtime()))
print(format(time.gmtime()))
本地时区的struct_time:
time.struct_time(tm_year=2019, tm_mon=3, tm_mday=7, tm_hour=16, tm_min=22, tm_sec=11, tm_wday=3, tm_yday=66, tm_isdst=0)
UTC时区的struct_time:
time.struct_time(tm_year=2019, tm_mon=3, tm_mday=7, tm_hour=8, tm_min=22, tm_sec=11, tm_wday=3, tm_yday=66, tm_isdst=0)
print(time.localtime(0))
--1970,1,1,8:00
print(time.localtime(360*24*365))
--1971,1,1,8:00
结构化时间-格式化时间-时间戳三者之间进行转换:
# 推迟指定的时间运行,单位为秒
start = time.time()
time.sleep(3)
end = time.time()
print(end-start)
格式化时间 : %Y -%m - %d %X
time.strftime
结构化时间:
time.localtime
时间戳
time.time()
time.sleep()
标签:不同的 第几天 strftime time() sds 入门 roc process str
原文地址:https://www.cnblogs.com/shaozheng/p/11604379.html