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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- mybatis獲取當前時間MyBatis
- java獲取當前時間Java
- Qt獲取當前時間QT
- js獲取當前時間JS
- Qt 獲取當前時間QT
- 如何用Java獲取當前時間戳?Java時間戳
- c++ 獲取當前時間周初凌晨時間戳(獲取當前時間週一凌晨時間戳)C++時間戳
- 如何用js獲取當前時間和ip地址以及當前城市JS
- javascript獲取當前的時間戳JavaScript時間戳
- QT獲取系統當前時間QT
- js獲取當前的具體時間JS
- ThinkPHP 在頁面獲取當前時間PHP
- Javascript獲取當前時間戳的方法JavaScript時間戳
- Qt學習(5)獲取當前系統時間-實時顯示當前時間QT
- WPF 前臺觸發器實時獲取當前時間觸發器
- 實時獲取當前時間程式碼例項
- js獲取當前時間上一個月前的時間JS
- 用Delphi獲取當前系統時間 (轉)
- js時間物件:獲取當前時間(格式化)- 程式碼篇JS物件
- PHP獲取當前季度的開始時間和結束時間PHP
- js獲取指定時間日期和當前時間日期的相差多少時間JS
- JavaScript怎麼獲取當前時間的年月日?JavaScript
- Qt獲取當前時間的兩種方式筆記QT筆記
- MySQL如何獲取當前時間的前一天和後一天時間MySql
- iOS中獲取當前時間與簡單的處理iOS
- 使用go對NTP發起請求獲取當前時間Go
- 直播平臺軟體開發,登陸時獲取當前時間
- Python如何獲取當前執行檔案路徑?Python
- js獲取當天時間戳JS時間戳
- js外掛--獲取指定時間距離當前時間狀態:上週,當前周,前天,昨天,今天,明天,後天,當前周,下週。JS
- [python實用程式碼片段]python獲取當前時間的前一天,前一週,前一個月Python
- pydantic 欄位的預設值設定獲取當前時間
- js-----時間格式化、獲取當前網頁路徑JS網頁
- javascript獲取當前電腦系統時間程式碼例項JavaScript
- iOS專案開發實戰——獲取系統當前時間iOS
- Java如何獲取當前執行緒Java執行緒
- jQuery如何獲取當前元素的索引jQuery索引
- C/C++程式碼獲取當前時間的:年月日時分秒C++