在Python中,表示時間的格式有4種較為常用,分別是浮點數格式、標準可讀格式、格式化格式以及自訂格式。 (名字是自己起的,非官方命名)
(1)浮點數格式
以一個float格式的浮點數表示時間,其具體意義表示為從世界標準紀元時間( 1970年1月1日)起算至該時間節點的秒數。
(2)標準可讀格式
形式為——“星期幾 月份 日期 時:分:秒 年份”,便於人閱讀。
(3)格式化格式(time.struct_time)
分別用多個參數來表示年份、月份以及時分秒等信息,以便於計算機進行處理。
(4)自訂格式
根據自己的需求將時間日期資訊整理為自訂格式的字串。
# 浮点数格式 <class 'float'> 1667321639.1330378 # 标准可读格式 <class 'str'> Wed Nov 2 00:53:59 2022 # 格式化格式 <class 'time.struct_time'> time.struct_time(tm_year=2022, tm_mon=11, tm_mday=2, tm_hour=0, tm_min=53, tm_sec=59, tm_wday=2, tm_yday=306, tm_isdst=0) # 自定义格式 <class 'str'> 2022年11月01日 11:59:59
不同的格式之間的轉換關係如下圖:
time.time()方法用於讀取電腦內部時間,輸出為浮點數格式。
import time t1 = time.time() print(t1) Out: 1667322679.7262034
time.localtime()和time.gmtime()方法分別讀取當地時間和世界時間,輸出為格式化格式。
import time t1 = time.localtime() # 本地时间 t2 = time.gmtime() # 世界时间 print(t1) print(t2) Out: time.struct_time(tm_year=2022, tm_mon=11, tm_mday=2, tm_hour=1, tm_min=12, tm_sec=58, tm_wday=2, tm_yday=306, tm_isdst=0) time.struct_time(tm_year=2022, tm_mon=11, tm_mday=1, tm_hour=17, tm_min=12, tm_sec=58, tm_wday=1, tm_yday=305, tm_isdst=0)
當time.ctime()和time.asctime()輸入參數為空時,可以直接讀取目前時間為標準可讀格式。
import time t1 = time.ctime() t2 = time.asctime() print(t1) print(t2) Out: Wed Nov 2 01:10:01 2022 Wed Nov 2 01:10:01 2022
time.ctime()方法可將浮點數格式轉換為標準可讀格式。
time.asctime()方法可將格式化格式轉換為標準可讀格式。
import time t1 = time.ctime(time.time()) # 将浮点数格式转换为标准可读格式 t2 = time.asctime(time.localtime()) # 将格式化格式转换为标准可读格式 print(t1) print(t2) Out: Wed Nov 2 01:01:41 2022 Wed Nov 2 01:01:41 2022
time.strftime()可以將格式化格式轉換為自訂格式。
import time t1 = time.localtime() # 格式化格式 s1 = time.strftime("%Y-%m-%d %H:%M:%S", t1) print(s1) Out: 2022-11-02 01:21:28 # 自定义格式
相較於time.strftime(),time.strptime()則是用來將自訂格式轉換為時間物件。
import time s1 = "2022年11月01日 11:59:59" # 自定义格式 t1 = time.strptime(s1, "%Y年%m月%d日 %H:%M:%S") print(t1) Out: time.struct_time(tm_year=2022, tm_mon=11, tm_mday=1, tm_hour=11, tm_min=59, tm_sec=59, tm_wday=1, tm_yday=305, tm_isdst=-1)
1.三種時間:UTC time,local time,epoch time
2.三種時間表示:timestamp,struct_time,format time
3.time.time()傳回時間戳記;time.localtime()傳回時間元組;time.strftime('%Y-%m-%d' , time .localtime())返回格式化時間
time.strptime('2018年12月08日34時10分04秒' , '%Y年%m月%d日%M時%I分%S秒') 解析字串傳回時間元組
4.datetime模組是對time的進一步封裝,主要是5個類別:date,time,datetime,timedelta,tzinfo。
5.date.today(),date.fromtimestamp(timestamp),d.weekday(),d.strftime(format)
6.datetime.today(),datetime.now([tz ])
7.timedelta內部值儲存days,seconds,microseconds.其他所有值都轉換為這三個參數。
8.td.days(),td.seconds()
以上是Python中時間格式的讀取與轉換方法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!