Python time gmtime()方法
Python time gmtime()方法
Python time gmtime() 函數將一個時間戳轉換為UTC時區(0時區)的struct_time,可選的參數sec表示從1970-1-1以來的秒數。其默認值為time.time(),函數返回time.struct_time類型的對象。(struct_time是在time模塊中定義的表示時間的對象)。
語法
gmtime()方法語法:
time.gmtime([ sec ])
參數
- sec -- 轉換為time.struct_time類型的對象的秒數。
返回值
該函數沒有任何返回值。
實例
以下實例展示了 gmtime() 函數的使用方法:
#!/usr/bin/python import time print "time.gmtime() : %s" % time.gmtime()
以上實例輸出結果為:
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)
相關文章
- Python 變量類型
- Python 異常處理
- Python SMTP發送郵件
- Python3 if else 語句
- Python3 錯誤和異常
- Python3 命名空間
- Python3 內置函數
- Python round() 函數
- Python choice() 函數
- 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()方法