Python常用時間模組有哪些?這幾個很關鍵!

老男孩IT教育機構發表於2021-03-03

  在編寫程式碼的過程中,我們經常需要與時間打交道,所以說掌握時間處理模組及方法很重要,那麼Python常用時間模組有哪些呢?這幾個很關鍵!

  1. time模組

  time模組下有很多函式可以日期和時間的處理,如time.time()用於獲取當前時間戳,localtime()將浮點數的時間戳向時間元組轉換,asctime()和strftime()可以進行時間和日期的格式化,time.sleep()可以進行時間定時等。

  例項:

  import time #引入time模組

  localtime = time.localtime(time.time()) #返回時間元組

  newtime= time.asctime(localtime) #獲取格式化時間

  time.sleep(3600) #定時1個小時

  2.datetime模組

  datetime模組是Python時間處理的又一模組,主要包括date、time和datetime三個子模組,是一個親民的模組。

  例項:

  import datetime #引入datetime模組

  print datetime.datetime.now() #獲取當前時間

  3. 時間加減處理

  datetime模組中的timedelta子模組在處理時間加減方面十分好用,可以讓時間處理變得很靈活。

  例項:

  import datetime #引入datetime模組

  d1=datetime.datetime(2018,4,19) #定義變數獲取定義時間

  d2= datetime.datetime(2018,2,19) #定義變數獲取定義時間

  print d1+datetime.timedelta(days=100) # 輸出規定時間之後的第100天日期

  print d1-datetime.timedelta(days=100) # 輸出規定時間之前的第100天日期

  print d1-d2 #d1和d2日期相差天數

  4. 日曆

  日曆在時間處理中是非常重要的一塊,可以採用Python中的calendar模組實現。

  例項:

  import calendar #引入calendar模組

  print calendar.month(2018,4) 輸出2018年4月日曆

  5. 字串和日期的轉換

  字串和日期的轉換需要用到strftime()模組和Python中時間日期格式化符號,常用時間日期格式化符號有:

  %y 兩位數的年份表示(00-99)

  %Y 四位數的年份表示(000-9999)

  %m 月份(01-12)

  %d 月內中的一天(0-31)

  %H 24小時制小時數(0-23)

  %I 12小時制小時數(01-12)

  %M 分鐘數(00=59)

  %S 秒(00-59)

  把字串轉換成日期:

  import datetime #引入datetime模組

  time= datetime.strptime('2018-4-19 11:19:59','%Y-%m-%d %H:%M:%S') #把字串轉換成時間

  print time #輸出時間資訊

  把日期轉換成字串:

  import datetime #引入datetime模組

  str = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') #獲取當前時間並轉化成字串

  print str #輸出字串資訊


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952527/viewspace-2760816/,如需轉載,請註明出處,否則將追究法律責任。

相關文章