python 如何獲取當前時間

wyfem發表於2021-09-11

python 如何獲取當前時間

python 如何獲取當前系統的時間

1、匯入包

import datetime

python學習網,大量的免費,歡迎線上學習!

2、獲取當前的時間

curr_time = datetime.datetime.now()  # 2019-07-06 14:55:56.873893 <class 'datetime.datetime'>
curr_time.year  # 2019 <class 'int'>
curr_time.month  # 7 <class 'int'>
curr_time.day  # 6 <class 'int'>
curr_time.hour  # 14 <class 'int'>
curr_time.minute  # 55 <class 'int'>
curr_time.second  # 56 <class 'int'>
curr_time.date()  # 2019-07-06 <class 'datetime.date'>

相關推薦:《》

3、格式化

透過datetime.datetime.now(),我們獲取到的時間格式為:2019-07-06 14:55:56.873893,型別:<class 'datetime.datetime'>

我們可以使用strftime()轉換成我們想要的格式。處理之後的返回的值為2019-07-06、07/06等目標形式,型別為str

time_str = curr_time.strftime("%Y-%m-%d")  # 2019-07-06
time_str = curr_time.strftime("%m/%d")  # 07/06

4、型別轉換

時間一般透過:時間物件,時間字串,時間戳表示

透過獲取到的時間變數,型別為:datetime,那麼datetime與str型別如何互相轉換呢?

datetime-->str
time_str = datetime.datetime.strftime(curr_time,'%Y-%m-%d %H:%M:%S')  # 2019-07-06 15:50:12
str-->datetime
time_str = '2019-07-06 15:59:58'
curr_time = datetime.datetime.strptime(time_str,'%Y-%m-%d %H:%M:%S')

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2894/viewspace-2836093/,如需轉載,請註明出處,否則將追究法律責任。

相關文章