python 如何獲取當前系統的時間
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-
->
strtime_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 獲取當前時間
取得時間相關的資訊的話,要用到python time模組,python time模組裡面有很多非常好用的功能,你可以去官方 文件了解下,要取的當前時間的話,要取得當前時間的時間戳,時間戳好像是1970年到現在時間相隔的時間。你可以試下下面的方式來取得當前時間的時間戳 import time prin...
python 獲取當前時間
取得時間相關的資訊的話,要用到python time模組,python time模組裡面有很多非常好用的功能,你可以去官方 文件了解下,要取的當前時間的話,要取得當前時間的時間戳,時間戳好像是1970年到現在時間相隔的時間。以下面的方式來取得當前時間的時間戳 import time print ti...
Python 獲取當前時間
import time nowtime time.localtime 獲取當前時間 print time.strftime y m d h m s nowtime 對當前時間進行格式化並輸出 y年 四位數 000 9999 2020 y年 兩位數 00 99 2020 20 m月 01 12 d日 ...