Python time模塊提供了一些用於管理時間和日期的C庫函數,由於它綁定到底層C實現,因此一些細節會基於具體的平台。
time模塊的核心函數time(),它返回紀元開始的秒數,返回值為浮點數,具體精度依賴於平台。
>>>import time
>>>time.time()
1460599046.85416
浮點數一般用於存儲和比較日期,但是對人類不友好,要記錄和打印時間,可以使用ctime()。
>>>import time
>>>time.ctime()
'Thu Apr 14 10:03:58 2016'
>>> later = time.time()+5
>>> time.ctime(later)
'Thu Apr 14 10:05:57 2016'
clock()返回處理器時鐘時間,它的返回值一般用於性能測試與基准測試。因此它們反映了程序的實際運行時間。
>>>import time
>>>time.clock()
0.07
time模塊定義了struct_time來維護時間和日期,其中分開存儲各個組成部分,以便訪問。
import time
def show_struct(s):
print 'tm_year:", s.tm_year
print 'tm_mon:", s.tm_mon
print "tm_mday:", s.tm_mday
print "tm_hour:",s.tm_hour
print "tm_min:", s.tm_min
print "tm_sec:", s.tm_sec
print "tm_wday:", s.tm_wday
print "tm_yday:", s.tm_yday
show_struct(time.gmtime())
show_struct(time.localtime())
gmtime()用於獲取UTC時間,localtime()用於獲取當前時區的當前時間,UTC時間實際就是格林尼治時間,它與中國時間的時差為八個小時。
locatime() = gmtime() + 8hour
>>>import time
>>>time.timezone/3600
-8
ZONES = ["GMT", "EUROPE/Amsterdam']
for zone in ZONES:
os.environ["TZ"] = zone
time.tzset()
time模塊提供了兩個函數strptime()和strftime(),可以在struct_time和時間值字符串之間轉換。
用於將字符串時間轉換成struct_time格式:
>>> now=time.ctime()
>>> time.strptime(now)
time.struct_time(tm_year=2016, tm_mon=4, tm_mday=14, tm_hour=10, tm_min=48, tm_sec=40, tm_wday=3, tm_yday=105, tm_isdst=-1)
用於時間的格式化輸出
>>> from time import gmtime, strftime
>>> strftime("%a, %d %b %Y %H:%M:%S +0000", gmtime())
'Thu, 28 Jun 2001 14:17:15 +0000'
用於將struct_time轉換成時間的浮點數表示
>>>from time import mktime, gmtime
>>>mktime(gmtime())
1460573789.0
sleep函數用於將當前線程交出,要求它等待系統將其再次喚醒,如果寫程序只有一個線程,這實際上就會阻塞進程,什麼也不做。
import time
def fucn():
time.sleep(5)
print "hello, world"
執行上面的代碼,將等待5秒鐘之後再輸出信息。
《Python核心編程 第二版》.(Wesley J. Chun ).[高清PDF中文版] http://www.linuxidc.com/Linux/2013-06/85425.htm
《Python開發技術詳解》.( 周偉,宗傑).[高清PDF掃描版+隨書視頻+代碼] http://www.linuxidc.com/Linux/2013-11/92693.htm
使用Python進行文件備份 http://www.linuxidc.com/Linux/2016-04/130596.htm
Python腳本獲取Linux系統信息 http://www.linuxidc.com/Linux/2013-08/88531.htm
在Ubuntu下用Python搭建桌面算法交易研究環境 http://www.linuxidc.com/Linux/2013-11/92534.htm
Python 的詳細介紹:請點這裡
Python 的下載地址:請點這裡