呼叫時間模組
import time
1970 1.1 00:00:00 到現在經過的秒數
>>
>
print
(time.time())
#計算時間的間隔
1596510899.6354585
>>
>
print
(time.strftime(
'%y/%m/%d %h:%m:%s %p'))
>>
>
print
(time.strftime(
'%y/%m/%d %x %p'))
#展示了時間
2020/08
/0411:
16:15 am
2020/08
/0411:
16:15 am
使用datetime
模組獲取當前時間
>>
>
print
(datetime.datetime.now())
# 當前時間
>>
>
print
(datetime.datetime.now(
)+ datetime.timedelta(days=3)
)2020-08
-0411:
32:41.771947
2020-08
-0711:
32:41.771947
res = time.localtime(
)#當地的時間元組
>>
>
print
(res.tm_yday)
#計算今年過了多少天了
>>
>
print
(res.tm_mon)
#計算今年過了多少月了
2178
s_time = time.localtime(
)>>
>
print
(s_time)
>>
>
print
(time.mktime(s_time)
)time.struct_time(tm_year=
2020
, tm_mon=
8, tm_mday=
4, tm_hour=
11, tm_min=
39, tm_sec=
46, tm_wday=
1, tm_yday=
217, tm_isdst=0)
1596512386.0
s_time = time.time(
)>>
>
print
(s_time)
>>
>
print
(time.localtime(s_time)
)# 本地時間 上海為標準
1596512386.0
time.struct_time(tm_year=
2020
, tm_mon=
8, tm_mday=
4, tm_hour=
11, tm_min=
41, tm_sec=
5, tm_wday=
1, tm_yday=
217, tm_isdst=
0)
s_time = time.localtime(
)#得到乙個時間元組
>>
>
print
(time.strftime(
'%y-%m-%d %h:%m:%s'
, s_time)
)2020-08
-0411:
42:55
(十一)time模組
三種時間表示 主要掌握上面兩張圖,左圖是時間三種表示方式的相互裝換,右圖是兩種快捷方式 print time.time 時間戳 print time.localtime 結構化時間 元組 預設引數為空的話,即當前時間 print time.localtime 1473525444 如果有引數值,將這...
Python學習筆記 time
總結在日常的程式設計中,時間的處理應是最常用的過程之一,在python中,一般使用模組time與datetime,本文總結時間訪問和轉換的基礎內容。如下 示例 import time print time.time 當前時間的時間戳 print time.strftime y m d h m s 格...
python筆記 十一
open file,mode r buffering 1,encoding none,errors none,newline none,closefd true,opener false mode r 唯讀 w 可寫 會清除檔案內容 a 附加資料 b 二進位制資料模式 x 新建乙個檔案 可寫 開啟檔...