描述
方法tzset()重置库例程使用的时间转换规则。环境变量 TZ 指定这是如何完成的。
TZ 环境变量的标准格式是(为清晰起见添加了空格) -
std offset [dst [offset [,start[/time], end[/time]]]]
std and dst- 给出时区缩写的三个或更多字母数字。这些将传播到 time.tzname 中。
offset− 偏移量的格式为:hh[:mm[:ss]]。这表示与到达 UTC 的本地时间相加的值。如果前面有 '-',则时区在本初子午线以东;否则,它是西方。如果 dst 之后没有偏移,则假定夏令时比标准时间提前 1 小时。
start[/time], end[/time]− 指示何时更改为和返回 DST。开始日期和结束日期的格式是以下之一 -
Jn− 儒略日 n (1 <= n <= 365)。闰日不计算在内,因此在所有年份中,2 月 28 日是第 59 天,3 月 1 日是第 60 天。
n− 从零开始的儒略日 (0 <= n <= 365)。闰日是计算的,可以参考2月29日。
Mm.n.d− 第 d 天 (0 <= d <= 6) 或一年中第 m 个月的第 n 周(1 <= n <= 5, 1 <= m <= 12,其中第 5 周表示“最后 d 天”在第 m' 个月,可能发生在第四周或第五周)。第 1 周是第 d 天发生的第一周。零日是星期日。
time− 除了不允许前导符号('-' 或 '+')之外,这与偏移具有相同的格式。如果未给出时间,则默认值为 02:00:00。
用法
以下是语法tzset()方法 -
time.tzset()
参数
NA
返回值
此方法不返回任何值。
示例
下面的例子展示了 tzset() 方法的用法。
#!/usr/bin/python3
import time
import os
os.environ['TZ'] = 'EST+05EDT,M4.1.0,M10.5.0'
time.tzset()
print (time.strftime('%X %x %Z'))
os.environ['TZ'] = 'AEST-10AEDT-11,M10.5.0,M3.5.0'
time.tzset()
print (time.strftime('%X %x %Z'))
结果
当我们运行上述程序时,它会产生以下结果 -
13:00:40 02/17/09 EST 05:00:40 02/18/09 AEDT
相关用法
- Python 3 time time()用法及代码示例
- Python 3 time strftime()用法及代码示例
- Python 3 time asctime()用法及代码示例
- Python 3 time altzone()用法及代码示例
- Python 3 time localtime()用法及代码示例
- Python 3 time mktime()用法及代码示例
- Python 3 time gmtime()用法及代码示例
- Python 3 time sleep()用法及代码示例
- Python 3 time ctime()用法及代码示例
- 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 tzset() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。