W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
Python 程序能用很多方式處理日期和時間,轉(zhuǎn)換日期格式是一個常見的功能。
Python 提供了一個 time 和 calendar 模塊可以用于格式化日期和時間。
時間間隔是以秒為單位的浮點(diǎn)小數(shù)。
每個時間戳都以自從 1970 年 1 月 1 日午夜(歷元)經(jīng)過了多長時間來表示。
Python 的 time 模塊下有很多函數(shù)可以轉(zhuǎn)換常見日期格式。如函數(shù) time.time() 用于獲取當(dāng)前時間戳, 如下實(shí)例:
#!/usr/bin/python3
import time; # 引入time模塊
ticks = time.time()
print ("當(dāng)前時間戳為:", ticks)
以上實(shí)例輸出結(jié)果:
當(dāng)前時間戳為: 1459996086.7115328
時間戳單位最適于做日期運(yùn)算。但是 1970 年之前的日期就無法以此表示了。太遙遠(yuǎn)的日期也不行,UNIX 和 Windows 只支持到 2038 年。
很多 Python 函數(shù)用一個元組裝起來的9組數(shù)字處理時間:
序號 | 字段 | 值 |
---|---|---|
0 | 4 位數(shù)年 | 2020 |
1 | 月 | 1 到 12 |
2 | 日 | 1 到 31 |
3 | 小時 | 0 到 23 |
4 | 分鐘 | 0 到 59 |
5 | 秒 | 0 到 61 (60 或 61 是閏秒) |
6 | 一周的第幾日 | 0 到 6 (0 是周一) |
7 | 一年的第幾日 | 1 到 366 (儒略歷) |
8 | 夏令時 | -1, 0, 1, -1是決定是否為夏令時的旗幟 |
上述也就是struct_time元組。這種結(jié)構(gòu)具有如下屬性:
序號 | 屬性 | 值 |
---|---|---|
0 | tm_year | 2020 |
1 | tm_mon | 1 到 12 |
2 | tm_mday | 1 到 31 |
3 | tm_hour | 0 到 23 |
4 | tm_min | 0 到 59 |
5 | tm_sec | 0 到 61 (60或61 是閏秒) |
6 | tm_wday | 0到6 (0是周一) |
7 | tm_yday | 一年中的第幾天,1 到 366 |
8 | tm_isdst | 是否為夏令時,值有:1(夏令時)、0(不是夏令時)、-1(未知),默認(rèn) -1 |
從返回浮點(diǎn)數(shù)的時間輟方式向時間元組轉(zhuǎn)換,只要將浮點(diǎn)數(shù)傳遞給如 localtime 之類的函數(shù)。
#!/usr/bin/python3
import time
localtime = time.localtime(time.time())
print ("本地時間為 :", localtime)
以上實(shí)例輸出結(jié)果:
本地時間為 : time.struct_time(tm_year=2016, tm_mon=4, tm_mday=7, tm_hour=10, tm_min=28, tm_sec=49, tm_wday=3, tm_yday=98, tm_isdst=0)
你可以根據(jù)需求選取各種格式,但是最簡單的獲取可讀的時間模式的函數(shù)是 asctime():
#!/usr/bin/python3
import time
localtime = time.asctime( time.localtime(time.time()) )
print ("本地時間為 :", localtime)
以上實(shí)例輸出結(jié)果:
本地時間為 : Thu Apr 7 10:29:13 2020
我們可以使用 time 模塊的 strftime 方法來格式化日期,:
time.strftime(format[, t])
#!/usr/bin/python3
import time
# 格式化成2020-03-20 11:45:39形式
print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))
# 格式化成Sat Mar 28 22:24:24 2020形式
print (time.strftime("%a %b %d %H:%M:%S %Y", time.localtime()))
# 將格式字符串轉(zhuǎn)換為時間戳
a = "Sat Mar 28 22:24:24 2020"
print (time.mktime(time.strptime(a,"%a %b %d %H:%M:%S %Y")))
以上實(shí)例輸出結(jié)果:
2020-04-07 10:29:46
Thu Apr 07 10:29:46
20201459175064.0
Python 中時間日期格式化符號:
Calendar 模塊有很廣泛的方法用來處理年歷和月歷,例如打印某月的月歷:
#!/usr/bin/python3
import calendar
cal = calendar.month(2020, 9)
print ("以下輸出2020年9月份的日歷:")
print (cal)
以上實(shí)例輸出結(jié)果:
以下輸出2020年9月份的日歷:
September 2020
Mo Tu We Th Fr Sa Su
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Time 模塊包含了以下內(nèi)置函數(shù),既有時間處理相的,也有轉(zhuǎn)換時間格式的:
序號 | 函數(shù)及描述 | 實(shí)例 |
---|---|---|
1 | time.altzone
返回格林威治西部的夏令時地區(qū)的偏移秒數(shù)。如果該地區(qū)在格林威治東部會返回負(fù)值(如西歐,包括英國)。對夏令時啟用地區(qū)才能使用。 |
以下實(shí)例展示了 altzone()函數(shù)的使用方法:
|
2 | time.asctime([tupletime])
接受時間元組并返回一個可讀的形式為"Tue Dec 11 18:07:14 2008"(2008年12月11日 周二18時07分14秒)的24個字符的字符串。 |
以下實(shí)例展示了 asctime()函數(shù)的使用方法:
|
3 | time.clock()
用以浮點(diǎn)數(shù)計(jì)算的秒數(shù)返回當(dāng)前的CPU時間。用來衡量不同程序的耗時,比time.time()更有用。 |
實(shí)例 |
4 | time.ctime([secs])
作用相當(dāng)于asctime(localtime(secs)),未給參數(shù)相當(dāng)于asctime() |
以下實(shí)例展示了 ctime()函數(shù)的使用方法:
|
5 | time.gmtime([secs])
接收時間輟(1970紀(jì)元后經(jīng)過的浮點(diǎn)秒數(shù))并返回格林威治天文時間下的時間元組t。注:t.tm_isdst始終為0 |
以下實(shí)例展示了 gmtime()函數(shù)的使用方法:
|
6 | time.localtime([secs]
接收時間輟(1970紀(jì)元后經(jīng)過的浮點(diǎn)秒數(shù))并返回當(dāng)?shù)貢r間下的時間元組t(t.tm_isdst可取0或1,取決于當(dāng)?shù)禺?dāng)時是不是夏令時)。 |
以下實(shí)例展示了 localtime()函數(shù)的使用方法:
|
7 | time.mktime(tupletime)
接受時間元組并返回時間輟(1970紀(jì)元后經(jīng)過的浮點(diǎn)秒數(shù))。 |
實(shí)例 |
8 | time.sleep(secs)
推遲調(diào)用線程的運(yùn)行,secs指秒數(shù)。 |
以下實(shí)例展示了 sleep()函數(shù)的使用方法:
|
9 | time.strftime(fmt[,tupletime])
接收以時間元組,并返回以可讀字符串表示的當(dāng)?shù)貢r間,格式由fmt決定。 |
以下實(shí)例展示了 strftime()函數(shù)的使用方法:
|
10 | time.strptime(str,fmt='%a %b %d %H:%M:%S %Y')
根據(jù)fmt的格式把一個時間字符串解析為時間元組。 |
以下實(shí)例展示了 strptime()函數(shù)的使用方法:
|
11 | time.time( )
返回當(dāng)前時間的時間戳(1970紀(jì)元后經(jīng)過的浮點(diǎn)秒數(shù))。 |
以下實(shí)例展示了 time()函數(shù)的使用方法:
|
12 | time.tzset()
根據(jù)環(huán)境變量TZ重新初始化時間相關(guān)設(shè)置。 |
實(shí)例 |
Time 模塊包含了以下 2 個非常重要的屬性:
序號 | 屬性及描述 |
---|---|
1 | time.timezone
屬性time.timezone是當(dāng)?shù)貢r區(qū)(未啟動夏令時)距離格林威治的偏移秒數(shù)(>0,美洲;<=0大部分歐洲,亞洲,非洲)。 |
2 | time.tzname
屬性time.tzname包含一對根據(jù)情況的不同而不同的字符串,分別是帶夏令時的本地時區(qū)名稱,和不帶的。 |
此模塊的函數(shù)都是日歷相關(guān)的,例如打印某月的字符月歷。
星期一是默認(rèn)的每周第一天,星期天是默認(rèn)的最后一天。更改設(shè)置需調(diào)用calendar.setfirstweekday() 函數(shù)。模塊包含了以下內(nèi)置函數(shù):
序號 | 函數(shù)及描述 |
---|---|
1 | calendar.calendar(year,w=2,l=1,c=6)
返回一個多行字符串格式的 year 年年歷,3 個月一行,間隔距離為 c。 每日寬度間隔為 w 字符。每行長度為 21* W+18+2* C。l 是每星期行數(shù)。 |
2 | calendar.firstweekday( )
返回當(dāng)前每周起始日期的設(shè)置。默認(rèn)情況下,首次載入 calendar 模塊時返回 0,即星期一。 |
3 | calendar.isleap(year)
是閏年返回 True,否則為 False。 |
4 | calendar.leapdays(y1,y2)
返回在 Y1,Y2 兩年之間的閏年總數(shù)。 |
5 | calendar.month(year,month,w=2,l=1)
返回一個多行字符串格式的 year 年 month 月日歷,兩行標(biāo)題,一周一行。每日寬度間隔為 w 字符。每行的長度為 7* w+6。l 是每星期的行數(shù)。 |
6 | calendar.monthcalendar(year,month)
返回一個整數(shù)的單層嵌套列表。每個子列表裝載代表一個星期的整數(shù)。Year 年 month 月外的日期都設(shè)為 0;范圍內(nèi)的日子都由該月第幾日表示,從 1 開始。 |
7 | calendar.monthrange(year,month)
返回兩個整數(shù)。第一個是該月的星期幾的日期碼,第二個是該月的日期碼。日從 0(星期一)到 6 (星期日);月從 1 到 12。 |
8 | calendar.prcal(year,w=2,l=1,c=6)
相當(dāng)于 print calendar.calendar(year,w,l,c). |
9 | calendar.prmonth(year,month,w=2,l=1)
相當(dāng)于 print calendar.calendar(year,w,l,c)。 |
10 | calendar.setfirstweekday(weekday)
設(shè)置每周的起始日期碼。0(星期一)到 6(星期日)。 |
11 | calendar.timegm(tupletime)
和 time.gmtime 相反:接受一個時間元組形式,返回該時刻的時間輟(1970 紀(jì)元后經(jīng)過的浮點(diǎn)秒數(shù))。 |
12 | calendar.weekday(year,month,day)
返回給定日期的日期碼。0(星期一)到6(星期日)。月份為 1(一月) 到 12(12月)。 |
在 Python中,其他處理日期和時間的模塊還有:
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: