Python time gmtime()方法
Python time gmtime()方法
Python time gmtime() 函數(shù)將一個(gè)時(shí)間戳轉(zhuǎn)換為UTC時(shí)區(qū)(0時(shí)區(qū))的struct_time,可選的參數(shù)sec表示從1970-1-1以來(lái)的秒數(shù)。其默認(rèn)值為time.time(),函數(shù)返回time.struct_time類型的對(duì)象。(struct_time是在time模塊中定義的表示時(shí)間的對(duì)象)。
語(yǔ)法
gmtime()方法語(yǔ)法:
time.gmtime([ sec ])
參數(shù)
- sec -- 轉(zhuǎn)換為time.struct_time類型的對(duì)象的秒數(shù)。
返回值
該函數(shù)沒(méi)有任何返回值。
實(shí)例
以下實(shí)例展示了 gmtime() 函數(shù)的使用方法:
#!/usr/bin/python import time print "time.gmtime() : %s" % time.gmtime()
以上實(shí)例輸出結(jié)果為:
time.gmtime() : time.struct_time(tm_year=2016, tm_mon=4, tm_mday=7, tm_hour=2, tm_min=55, tm_sec=45, tm_wday=3, tm_yday=98, tm_isdst=0)
相關(guān)文章
- Python 變量類型
- Python 異常處理
- Python SMTP發(fā)送郵件
- Python3 if else 語(yǔ)句
- Python3 錯(cuò)誤和異常
- Python3 命名空間
- Python3 內(nèi)置函數(shù)
- Python round() 函數(shù)
- Python choice() 函數(shù)
- Python File seek() 方法
- Python File writelines() 方法
- Python os.fpathconf() 方法
- Python os.getcwd() 方法
- Python os.rename() 方法
- Python os.symlink() 方法
- Python decode()方法
- Python min()方法
- Python 字典 Dictionary copy()方法
- Python 字典 Dictionary has_key()方法
- Python time gmtime()方法