一、time模塊
時(shí)間表示方法:
時(shí)間戳類型:time.time()
數(shù)組的類型即struct_time:time.localtime()
時(shí)間戳與struct_time的相互轉(zhuǎn)換:
時(shí)間戳-->struct_time:gmtime()
struct_time-->時(shí)間戳:mktime()
struct_time類型與字符型的相互轉(zhuǎn)換:
struct_time 轉(zhuǎn)換成字符串:strftime()
字符串轉(zhuǎn)換成struct_time:strptime()
二、datetime模塊
datetime.datetime:表示日期時(shí)間。
通time模塊一樣徘熔,也提供了strftime與strptime進(jìn)行datetime類型與字符串的轉(zhuǎn)化
datetime.timedelta:表示時(shí)間間隔,即兩個(gè)時(shí)間點(diǎn)之間的長(zhǎng)度淆党。
三酷师、time與datetime之間的互相轉(zhuǎn)換
時(shí)間戳--->datetime:
datetime-->struct_time:
struct_time-->datetime:
可通過(guò)中間狀態(tài)string完成,也可讓struct_time,轉(zhuǎn)化為時(shí)間戳染乌,再變?yōu)閐atetime