這篇文章主要介紹python中獲取當前時間的操作步驟,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)公司是專業(yè)的西青網(wǎng)站建設公司,西青接單;提供做網(wǎng)站、成都做網(wǎng)站,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行西青網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
python 如何獲取當前系統(tǒng)的時間
1、導入包
import datetime
python學習網(wǎng),大量的免費python視頻教程,歡迎在線學習!
2、獲取當前的時間
curr_time = datetime.datetime.now() # 2019-07-06 14:55:56.873893curr_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()轉(zhuǎn)換成我們想要的格式。處理之后的返回的值為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、類型轉(zhuǎn)換
時間一般通過:時間對象,時間字符串,時間戳表示
通過datetime獲取到的時間變量,類型為:datetime,那么datetime與str類型如何互相轉(zhuǎn)換呢?
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中獲取當前時間的操作步驟的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!