標籤:time ctime asctime strftime strptime
從time 模組的協助文檔中,發現相關的函數主要有如下:
time() -- return current time in seconds since the Epoch as a float clock() -- return CPU time since process start as a float sleep() -- delay for a number of seconds given as a float gmtime() -- convert seconds since Epoch to UTC tuple localtime() -- convert seconds since Epoch to local time tuple asctime() -- convert time tuple to string ctime() -- convert time in seconds to string mktime() -- convert local time tuple to seconds since Epoch strftime() -- convert time tuple to string according to format specification strptime() -- parse string to time tuple according to format specification tzset() -- change the local timezone
那麼就從以上這些函數看看time 模組的功能。
1、time()
這個函數返回的是一個時間戳記。為1970年1月1日0時0分0秒為計時起點,到當前的時間長度(不考慮閏秒)。以浮點型標識
In [52]: import timeIn [53]: time.time()Out[53]: 1431868698.641031In [54]:
這個傳回值看起來特別彆扭。至少人無法理解到底代表的時什麼時間。
2、localtime()
這個函數至少緩和了time函數的尷尬傳回值。它能將任何一個時間戳記轉換成一個tuple,這個tuple 是人能夠理解的時間。若預設localtime中沒有參數,那麼它將取time.time()這個時間戳記。
In [56]: time.localtime()Out[56]: time.struct_time(tm_year=2015, tm_mon=5, tm_mday=17, tm_hour=21, tm_min=23, tm_sec=37, tm_wday=6, tm_yday=137, tm_isdst=0)In [57]: time.localtime(10000)Out[57]: time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=10, tm_min=46, tm_sec=40, tm_wday=3, tm_yday=1, tm_isdst=0)
這個tuple 中,每一項的意義如下:
| tm_hour
| hours, range [0, 23]
|
| tm_isdst
| 1 if summer time is in effect, 0 if not, and -1 if unknown
|
| tm_mday
| day of month, range [1, 31]
|
| tm_min
| minutes, range [0, 59]
|
| tm_mon
| month of year, range [1, 12]
|
| tm_sec
| seconds, range [0, 61])
|
| tm_wday
| day of week, range [0, 6], Monday is 0
|
| tm_yday
| day of year, range [1, 366]
|
| tm_year
| year, for example, 1993
其中:
tm_wday, tm_yday, tm_isdst 這三個我個人感覺記不住,就特意記錄一下。
tm_wday: 一周的第幾天。範圍為0-6,星期一為第0天,周日為第六天
tm_yday: 一年的第多少天,時間範圍為0-366
tm_isdst:代表夏令時
3、gmtime()
localtime()得到的是本地時間,如果要國際化,就最好使用格林威治時間。
gmtime 表現行為和 localtime一致,若不提供時間參數,那麼它將擷取time.time() 做時間參數。
In [59]: time.gmtime()Out[59]: time.struct_time(tm_year=2015, tm_mon=5, tm_mday=17, tm_hour=13, tm_min=32, tm_sec=29, tm_wday=6, tm_yday=137, tm_isdst=0)In [60]: time.gmtime(1000)Out[60]: time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=16, tm_sec=40, tm_wday=3, tm_yday=1, tm_isdst=0)In [61]:
4、ctime() 和 asctime()
日常編程中,大家最常用的資料類型肯定有字串吧。那麼怎麼將以上的這些時間表示形式轉換成字串的形式去表現呢?
ctime 和 asctime 這兩個函數就可以協助我們完成這樣的工作。
首先比較一下ctime 和 asctime 的異同。
相同地方:
這兩個函數都返回字串形式的時間
In [63]: time.ctime()Out[63]: ‘Sun May 17 21:36:53 2015‘In [64]: time.asctime()Out[64]: ‘Sun May 17 21:36:56 2015‘In [65]:
不同之處:
cimte 函數接受的參數是一個以秒(s)為單位的時間。若預設不提供參數,則擷取time.time()
asctime 函數接受的是一個表示時間的tuple。若預設不提供參數,則擷取的時time.localtime()
In [66]: time.ctime()Out[66]: ‘Sun May 17 21:40:08 2015‘In [67]: time.ctime(1000)Out[67]: ‘Thu Jan 1 08:16:40 1970‘In [68]: time.asctime()Out[68]: ‘Sun May 17 21:40:34 2015‘In [69]: t = time.localtime(1000)In [70]: time.asctime(t)Out[70]: ‘Thu Jan 1 08:16:40 1970‘
5、strftime() 和 strptime()
現在time() 、localtime() 等返回的時間格式都可以轉換成字串形式的時間了。不過,這個字串的格式不能調整。假如我想時間以另外一種字串的格式去表示呢?
這是就可以使用strftime 這個函數了。strftime 這個函數的參數時一個tuple 類型的時間。若不給參數,那麼它將擷取time.localtime() 作為參數.
In [86]: time.strftime(‘%Y-%m-%d‘)Out[86]: ‘2015-05-17‘In [87]: t = time.localtime(1000)In [88]: time.strftime(‘%Y-%m-%d‘,t)Out[88]: ‘1970-01-01‘
每個人想要的表示時間的格式不一樣。其實這裡重點的應該時如何去擷取格式化參數每一項的意思.
在python 本身的協助中我暫時沒有找到這些說明,不過從linux 系統函數strftime 中我找到了每一項的說明。 man strftime 就可以看到。或者大家從網路上也可以隨意的搜尋到。
strptime 這個函數,做的正好時strftime的反向工作:
In [4]: t = time.strftime(‘%Y-%m-%d‘)In [5]: time.strptime(t,‘%Y-%m-%d‘)Out[5]: time.struct_time(tm_year=2015, tm_mon=5, tm_mday=17, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=6, tm_yday=137, tm_isdst=-1)
本文出自 “學習筆記” 部落格,請務必保留此出處http://unixman.blog.51cto.com/10163040/1652145
Python 中的 time 模組