标签:
reference:http://www.runoob.com/python/python-date-time.html
time,datetime.data,datetime.date,calendar是python的时间函数,
time,data有多种方法,以time为例
时间戳(time.time,以当前时间为例) 通过time.localtime/time.gmtime 方法 得到 time.struct对象
time.struct对象 通过time.mktime得到时间戳
time.struct对象 通过time.asctime得到字符串
时间戳(time.time) 通过 time.ctime得到字符串,等同于 time.asctime(time.localtime(time.time()))
元组 time.strftime 获取 相应的字符串(周几,年,月 等任意提取,time.strftime("%b %d %Y %H:%M:%S", time.gmtime(time.time())
字符串 time.strptime 获取元组 time.strptime("30 Nov 00", "%d %b %y")
标签:
原文地址:http://www.cnblogs.com/Citizen/p/4708260.html