Python time altzone()方法
Python time altzone()方法
Python time altzone() 函數返回格林威治西部的夏令時地區的偏移秒數。如果該地區在格林威治東部會返回負值(如西歐,包括英國)。對夏令時啟用地區才能使用。
語法
altzone()方法語法:
time.altzone
參數
- NA。
返回值
返回格林威治西部的夏令時地區的偏移秒數。如果該地區在格林威治東部會返回負值(如西歐,包括英國)。
實例
以下實例展示了 altzone()函數的使用方法:
#!/usr/bin/python import time print "time.altzone %d " % time.altzone
以上實例輸出結果為:
time.altzone() 25200
相關文章
- Python 簡介
- Python 字符串
- Python JSON
- Python 數組
- Python 集合
- Python 堆
- Python 算法分析
- Python3 迭代器
- Python3 面向對象
- Python File writelines() 方法
- Python os.link() 方法
- Python os.tempnam() 方法
- Python decode()方法
- Python maketrans()方法
- Python rfind()方法
- Python List extend()方法
- Python List reverse()方法
- Python Tuple 元組 cmp()方法
- Python Tuple 元組 len()方法
- Python time clock()方法