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

2021-10-05 09:30:50 字數 1087 閱讀 5731

1.匯入包import datetime

2.獲取當前的時間

curr_time =datetime.datetime.now()# 2019-07-06 14:55:56.873893
curr_time.year  # 2019 

curr_time.month  # 7

curr_time.day  # 6

curr_time.hour  # 14 

curr_time.minute  # 55

curr_time.second  # 56

curr_time.date()  # 2019-07-06

3.格式化

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

我們可以使用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,那麼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')

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

1.匯入包 import datetime2.獲取當前的時間 curr time datetime.datetime.now 2019 07 06 14 55 56.873893 curr time.year 2019 curr time.month 7 curr time.day 6 curr t...

如何獲取系統當前時間

不說廢話直接上 date d new date long time new date gettime dateformat format new dateformat yyyy年mm月dd日 hh mm ss string datetime format.format time system.out...

Python獲取當前系統時間

python獲取當前系統時間 import time 返回當前時間 def getnowtime return time.strftime y m d h m s time.localtime time.time 擴充套件python中時間日期格式化符號 y 兩位數的年份表示 00 99 y 四位數...