在python中表示時間的三種方式:
import time
time.sleep(n) #休眠ns
time.time( ) #獲取當前時間戳
time.localtime() 將乙個時間戳轉化為乙個當前時間的struct_time(若未提供引數,使用當前時間)
time.gmtime()和localtime類似,將乙個時間戳轉化為utc時區(0時區)
time.time() 返回當前時間戳
time.mktime(t)將time.struct_time轉化為時間戳
time,sleep(sec)將執行緒推遲指定的時間執行,單位秒
time.asctime()把錶時間的元組或struct_time表示為「sun july 26 xx:xx:xx 2019」
time.ctime()把乙個時間戳轉化為time.asctime()的形式。如果未傳引數,預設time.time()
time.strtime(format()) 把乙個代表時間的元組轉化為格式化的字串,未傳引數,預設time.localtime()
time.strptime()將結構化字串轉化為struct_time
相比time來說,datetime模組介面更直觀,更容易呼叫
方法::-:
:-:datrtime.date
表示日期,常用屬性year,month,day
datetime.time
表示時間,常用屬性hour,minute,second,micresecond
datetime.datetime
表示日期
datetime.timedelta
表示時間間隔
datetime.tzinfo
與時區相關的資訊
sys模組是與python直譯器互動的乙個介面
處理命令列引數
序列化(pickling):將乙個物件從記憶體中轉換為可儲存(字串型別)或者可傳輸(bytes)型別的過程。
為什麼要使用序列化
是一種使用廣泛的輕量資料格式. python標準庫中的json
模組提供了json資料的處理功能.
python常見的模組
math.ceil x 功能 對x進行向上求整 math.floor x 功能 對x進行向下取整 math.modf x 功能 返回x的小數與整數部分以元組的形式返回。math.sqrt x 功能 返回x的開平方根 返回的正數的那個 os.getcwd 功能 獲取當前目錄的絕對路徑 絕對路徑 win...
python常見的模組
python模組模組 module 在python中,py就是模組 模組的使用 import 模組名 from 模組所在檔名 import 模組下的函式 常見的系統內建模組的使用 1 math 該模組主要用於數學計算和相關計算的模組 屬性 math.pi 圓周率 math.e 自然常數 方法 mat...
常見的python模組 python常見模組
一 time模組 1 time.time 時間戳 print time.time 2 time.localtime second 加上second 時間戳 轉換結構化時間,不加則顯示當前的結構化時間 print time.localtime print time.localtime 13716431...