python中獲取系統(tǒng)當(dāng)前時間的實(shí)現(xiàn)方法?這個問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
專業(yè)從事網(wǎng)站建設(shè)、成都做網(wǎng)站,高端網(wǎng)站制作設(shè)計(jì),小程序定制開發(fā),網(wǎng)站推廣的成都做網(wǎng)站的公司。優(yōu)秀技術(shù)團(tuán)隊(duì)竭力真誠服務(wù),采用HTML5建站+CSS3前端渲染技術(shù),響應(yīng)式網(wǎng)站設(shè)計(jì),讓網(wǎng)站在手機(jī)、平板、PC、微信下都能呈現(xiàn)。建站過程建立專項(xiàng)小組,與您實(shí)時在線互動,隨時提供解決方案,暢聊想法和感受。python獲取系統(tǒng)當(dāng)前的時間的方法:可以利用datetime.datetime.now()函數(shù)來獲取。具體方法:1、導(dǎo)入datetime包;2、獲取當(dāng)前的時間,如【curr_time = datetime.datetime.now()】。
具體方法:
(推薦教程:Python入門教程)
1、導(dǎo)入包
import datetime
2、獲取當(dāng)前的時間
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等目標(biāo)形式,類型為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:12str-->datetime time_str = '2019-07-06 15:59:58' curr_time = datetime.datetime.strptime(time_str,'%Y-%m-%d %H:%M:%S')
感謝各位的閱讀!看完上述內(nèi)容,你們對python中獲取系統(tǒng)當(dāng)前時間的實(shí)現(xiàn)方法大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道。