import time
"""函式time.time()用於獲取當前時間戳"""
print
(time.time())
"""返回浮點數的時間戳方式向時間元組轉換,只要將浮點數傳遞給如localtime之類的函式。"""
print
(time.localtime())
"""sleep() 函式推遲呼叫執行緒的執行,可通過引數secs指秒數,表示程序掛起的時間。"""
for i in
range(3
):time.sleep(.5)
print
("tick"
)# 1570196055.049946
# time.struct_time(tm_year=2019, tm_mon=10, tm_mday=4, tm_hour=21, tm_min=34, tm_sec=15, tm_wday=4, tm_yday=277, tm_isdst=0)
# tick
# tick
# tick
datetime是乙個關於時間的庫,主要包含的類有:
date 日期物件,常用的屬性有year,month,day
datetime 日期時間物件,常用的屬性有hour,minute,second,microsecond
time 時間物件,hour,minute,second,毫秒
timedelta 時間間隔,即兩個時間點之間的長度
import datetime
print
(datetime.date.today())
print
(datetime.datetime.now())
print
(datetime.date(
2019,10
,4))
print
(datetime.time(21,
35))# 2019-10-04
# 2019-10-04 21:36:06.273307
# 2019-10-04
# 21:35:00
import datetime
today = datetime.date.today(
)yesterday = today - datetime.timedelta(days=1)
tomorrow = today + datetime.timedelta(days=1)
print
(yesterday,today,tomorrow)
# 2019-10-03 2019-10-04 2019-10-05
python 時間模組
import os import time s 2019 7 14 print time.strptime s,y m d s time 09 00 00 print time.strptime s time,h m s 把元組的時間轉換為時間戳 tuple time time.localtime ...
python 時間模組
格式化時間字串 y 兩位數的年份表示 00 99 y 四位數的年份表示 0000 9999 m 月份 01 12 d 月內的一天 0 31 h 24小時制的小時數 0 23 i 12小時制的小時數 01 12 m 分鐘數 00 59 s 秒 00 59 a 本地簡化星期名稱 a 本地完整星期名稱 b...
python 時間模組
時間的一般表示 import time s 2019 7 14 print time.strptime s,y m d 1.時間戳 print time.time 2.字串時間 print time.ctime 3.元組型別的時間 print time.localtime info time.loc...