描述
方法altzone()是属性time模块。如果已定义,则返回本地 DST 时区的偏移量,以 UTC 以西的秒数为单位。如果本地 DST 时区在 UTC 以东(如西欧,包括英国),则此值为负数。仅当日光不为零时才使用此选项。
用法
以下是语法altzone()方法≫
time.altzone
参数
NA
返回值
如果已定义,此方法返回本地 DST 时区的偏移量,以 UTC 以西的秒数为单位。
示例
下面的例子展示了 altzone() 方法的用法。
#!/usr/bin/python3
import time
print ("time.altzone:", time.altzone)
结果
当我们运行上面的程序时,它会产生以下结果——
time.altzone: -23400
相关用法
- Python 3 time asctime()用法及代码示例
- Python 3 time strftime()用法及代码示例
- Python 3 time time()用法及代码示例
- Python 3 time localtime()用法及代码示例
- Python 3 time mktime()用法及代码示例
- Python 3 time gmtime()用法及代码示例
- Python 3 time sleep()用法及代码示例
- Python 3 time ctime()用法及代码示例
- Python 3 time tzset()用法及代码示例
- Python 3 time strptime()用法及代码示例
- Python 3 time clock()用法及代码示例
- Python 3 Number tan()用法及代码示例
- Python 3 os.fstatvfs()用法及代码示例
- Python 3 List pop()用法及代码示例
- Python 3 os.minor()用法及代码示例
- Python 3 dictionary cmp()用法及代码示例
- Python 3 String isupper()用法及代码示例
- Python 3 os.close()用法及代码示例
- Python 3 List index()用法及代码示例
- Python 3 String decode()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - time altzone() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。