Python時間處理常用模組及用法詳解!
Python中最常用的三個處理時間的模組為:time模組、datetime模組和calendar模組,本文為大家詳細介紹一下這三個時間處理模組以及它們的基礎用法,希望對你們有幫助。
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月日曆
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952527/viewspace-2928036/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python時間模組常用操作總結Python
- 常用模組 PHP 錯誤處理PHP
- python模組詳解Python
- Python3 中 configparser 模組解析配置的用法詳解Python
- python 時間相關模組Python
- Python常用時間模組有哪些?這幾個很關鍵!Python
- python時間模組time和datetimePython
- Python之time模組詳解Python
- Python time模組詳解(時間戳↔元組形式↔格式化形式三者轉化)Python時間戳
- Python中使用dateutil模組解析時間Python
- 常用Python模組3Python
- python的os模組的常見函式及用途詳解Python函式
- Python Excel處理庫openpyxl詳解PythonExcel
- Python區域性函式及用法詳解Python函式
- Python開發常用的庫及模組!Python學習教程Python
- Python中paramiko 模組的用法Python
- Python中operator 模組的用法Python
- Python中pathlib 模組的用法Python
- Python中itertools 模組的用法Python
- pip安裝模組超時怎麼處理
- Python 正規表示式模組詳解Python
- python之logging日誌模組詳解Python
- Python資料處理典型用法Python
- Python資料處理-pandas用法Python
- 一看就懂,Python 日誌模組詳解及應用Python
- Python中的時間處理大總結Python
- Python self用法詳解Python
- Python 分組處理Python
- java時間處理Java
- PHP 時間處理PHP
- java日期時間各種變換及處理Java
- ??Java開發者的Python快速進修指南:自定義模組及常用模組JavaPython
- Python3 pickle模組的使用詳解Python
- python3.x中argparse模組詳解Python
- python IO模組【二】:open函式詳解Python函式
- Python常用模組(random隨機模組&json序列化模組)Pythonrandom隨機JSON
- Python學習之 異常處理詳解Python
- Python 常用系統模組整理Python