Python time altzone()方法
Python time altzone()方法
Python time altzone() 函數(shù)返回格林威治西部的夏令時地區(qū)的偏移秒數(shù)。如果該地區(qū)在格林威治東部會返回負(fù)值(如西歐,包括英國)。對夏令時啟用地區(qū)才能使用。
語法
altzone()方法語法:
time.altzone
參數(shù)
- NA。
返回值
返回格林威治西部的夏令時地區(qū)的偏移秒數(shù)。如果該地區(qū)在格林威治東部會返回負(fù)值(如西歐,包括英國)。
實(shí)例
以下實(shí)例展示了 altzone()函數(shù)的使用方法:
#!/usr/bin/python import time print "time.altzone %d " % time.altzone
以上實(shí)例輸出結(jié)果為:
time.altzone() 25200
相關(guān)文章
- Python 簡介
- Python 字符串
- Python JSON
- Python 數(shù)組
- Python 集合
- Python 堆
- Python 算法分析
- Python3 迭代器
- Python3 面向?qū)ο?/a>
- 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()方法