上文:我們使用了time模組來獲取當前系統的時間,其實python也為開發者提供了更高階的物件導向的介面函式:datetime,它可以實現更多的操作日期和時間的簡單或複雜的方法
1.匯入 import datetime 類
import datetime
2.使用datatime模組中的方法
cur=datetime.datetime.now() #獲取當前系統時間
cur.hour #小時
cur.minute #分
cur.year #年
cur.month #月
cur.day #日
列印結果:
2018-07-09 11:28:19.520927
1128
2018
79
通過上述的方法,我們就可以視情況取自己想要的值了。
上文:python獲取當前的時間-time模組
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日 ...