2020 5 23 time模組的幾個用法

2021-10-06 10:09:33 字數 623 閱讀 7960

# 匯入時間模組

import time

# 列印當前時間,注意返回的是浮點數

seconds = time.time(

)# 例如返回的是1590230719.7970574

接以上**,注意返回的是結構化的時間,並不是我們通常理解的2020.5.23.18:49…

local_time = time.localtime(seconds)

#例如返回的是time.struct_time(tm_year=2020, tm_mon=5, tm_mday=23, tm_hour=18, tm_min=47, tm_sec=39, tm_wday=5, tm_yday=144, tm_isdst=0)

每個變數表示的意義:

format_time = time.strftime(

'%y.%m.%d %h:%m:%s'

, local_time)

# 年月日時分秒,注意大小寫

time.strptime(format_time,

'%y.%m.%d %h:%m:%s'

)

python內建模組中的time模組

time時間模組 import time t time.time 獲取當前的utc時間 t time.asctime 將時間元組轉換為日期時間字串 不傳引數返回當前的時間 t time.gmtime 用給定秒數轉換為用utc表達的時間元組 預設返回當前時間元組 t time.mktime 2018,...

python的time模組試用

1.獲取當前時間 time.time 獲取當前時間戳 time.localtime 當前時間的struct time形式 time.ctime 當前時間的字串形式 ctime current time2.將結構化的時間格式化成時間字串 格式化成2015 02 14 22 38 39形式 time.s...

聊聊Python的time模組

time模組是很多人最早接觸到的模組,像time.sleep x 好像隨處可見,但是time模組裡面的其他方法呢?下面一起看一下time模組。1.時間戳,包括time 等函式 2.格式化的時間字元 包括asctime 等函式 3.時間元組 包括localtime 等函式 分別舉例如下 print t...