标签:color pytho struct 元组 time mtime class ftime 字符串
在Python中,通常有这几种方式来表示时间:
1 >>> import time 2 >>> print(time.time()) #时间戳 3 1504395298.448052 4 >>> print(time.strftime("%Y-%m-%d %X")) #格式化的时间字符串 5 2017-09-03 07:35:41 6 >>> print(time.localtime()) #本地时区的struct_time 7 time.struct_time(tm_year=2017, tm_mon=9, tm_mday=3, tm_hour=7, tm_min=35, tm_sec=52, tm_wday=6, tm_yday=246, tm_isdst=0) 8 >>> print(time.gmtime()) #UTC时区的struct_time 9 time.struct_time(tm_year=2017, tm_mon=9, tm_mday=2, tm_hour=23, tm_min=36, tm_sec=13, tm_wday=5, tm_yday=245, tm_isdst=0)
标签:color pytho struct 元组 time mtime class ftime 字符串
原文地址:http://www.cnblogs.com/Achin/p/7468683.html