Python常用時間模組有哪些?這幾個很關鍵!
在編寫程式碼的過程中,我們經常需要與時間打交道,所以說掌握時間處理模組及方法很重要,那麼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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python中常用的模組有哪些?看看你知道幾個!Python
- Python中常用模組有哪些?Python
- python 時間相關模組Python
- Python時間模組常用操作總結Python
- Python中常用模組有哪些?Python基礎教程Python
- Python程式設計最常見的錯誤有哪些?這五點很關鍵!Python程式設計
- Python語言模組分為哪幾類?有哪些主要模組?Python
- Python中常用的資料分析工具(模組)有哪些?Python
- Python時間處理常用模組及用法詳解!Python
- Python中模組是什麼?Python有哪些模組?Python
- PyChram社群版和商用版有何區別?這幾點很關鍵!
- Python培訓分享:Python中常用的資料分析工具(模組)有哪些?Python
- python threading模組有哪些函式Pythonthread函式
- Python安裝模組有哪些方法?Python
- python時間模組time和datetimePython
- 常用的Python GUI庫有哪些?這四個必不可少!PythonGUI
- Python執行快捷鍵是什麼?有哪些常用快捷鍵?Python
- Python學完後從業方向有哪些呢?分享這幾個Python
- Python中使用dateutil模組解析時間Python
- 常用Python模組3Python
- 這幾個python常用的庫你必須知道!Python
- Python快捷鍵有哪些?Python
- 模組化區塊鏈的有時包括哪些?區塊鏈
- Python常用模組(random隨機模組&json序列化模組)Pythonrandom隨機JSON
- Python 常用系統模組整理Python
- Python學習之常用模組Python
- python常用模組補充hashlib configparser logging,subprocess模組Python
- python你用過哪些模組Python
- 說說對 Node 中的 fs 模組的理解? 有哪些常用方法?
- 什麼是模組?Python模組分為哪幾類?Python
- Python中爬蟲模組有哪些?優缺點介紹!Python爬蟲
- D19-時間模組
- Python中合併兩個列表常用的方法有哪些?Python
- python 基礎筆記——常用模組Python筆記
- Python基礎:常用系統模組Python
- python常用模組之paramiko與sshPython
- Oracle undo保留時間的幾個相關引數Oracle
- 盲盒APP功能模組有哪些?APP