标签:元素 时间模块 height pytho 格式 struct float import http
在Python中,通常有这三种方式来表示时间:时间戳、元组(struct_time)、格式化的时间字符串:
(1)时间戳(timestamp) :通常来说,时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量。我们运行“type(time.time())”,返回的是float类型。
(2)格式化的时间字符串(Format String): ‘1999-12-06’
(3)元组(struct_time) :struct_time元组共有9个元素共九个元素:(年,月,日,时,分,秒,一年中第几周,一年中第几天等)
# 导入时间模块
>>> import time
# 时间戳
>>> time.time()
1568735027.6827252
# 时间字符串
>>> time.strftime(‘%Y-%m-%d %H:%M:%S‘)
‘2019-09-17 23:45:37‘
# 时间元祖
>>> time.localtime()
time.struct_time(tm_year=2019, tm_mon=9, tm_mday=17, tm_hour=23, tm_min=46, tm_sec=36, tm_wday=1, tm_yday=260, tm_isdst=0)
标签:元素 时间模块 height pytho 格式 struct float import http
原文地址:https://www.cnblogs.com/ZZYMiss/p/11538061.html