用法:
time.tzset()
重置库例程使用的时间转换规则。环境变量
TZ
指定如何完成。它还将设置变量tzname
(来自TZ
环境变量),timezone
(UTC 以西的非 DST 秒),altzone
(UTC 以西的 DST 秒数)和daylight
(如果此时区没有任何夏令时规则,则为 0,如果存在夏令时适用的时间、过去、现在或将来,则为非零)。可用性:Unix。
的标准格式
TZ
环境变量是(为清楚起见添加了空格):std offset [dst [offset [,start[/time], end[/time]]]]
组件在哪里:
std
和dst
给出时区缩写的三个或更多字母数字。这些将被传播到time.tzname
offset
偏移量的形式为:
± hh[:mm[:ss]]
。这表示为到达 UTC 的本地时间添加的值。如果前面有“-”,则时区位于本初子午线以东;否则,它是西方。如果 dst 后没有偏移,则假定夏令时比标准时间早一小时。start[/time], end[/time]
指示何时更改和返回 DST。开始日期和结束日期的格式是以下之一:
Jn
儒略日
n
(1 nn
从零开始的儒略日 (0 n
Mm.n.d
d
'th day (0 d n of monthm
of the year (1 n m m 月的最后d
天”,可能发生在第四周或第五周)。第 1 周是第d
天发生的第一周。第零天是星期天。
time
与offset
具有相同的格式,但不允许使用前导符号(“-”或“+”)。如果未指定时间,则默认值为 02:00:00。
>>> os.environ['TZ'] = 'EST+05EDT,M4.1.0,M10.5.0' >>> time.tzset() >>> time.strftime('%X %x %Z') '02:07:36 05/08/03 EDT' >>> os.environ['TZ'] = 'AEST-10AEDT-11,M10.5.0,M3.5.0' >>> time.tzset() >>> time.strftime('%X %x %Z') '16:08:12 05/08/03 AEST'
在很多 Unix 系统(包括 *BSD、Linux、Solaris 和 Darwin)上,使用系统的 zoneinfo (
tzfile(5)
) 数据库来指定时区规则。为此,请设置TZ
环境变量到所需时区数据文件的路径,相对于系统‘zoneinfo’时区数据库的根目录,通常位于/usr/share/zoneinfo
.例如,'US/Eastern'
,'Australia/Melbourne'
,'Egypt'
或者'Europe/Amsterdam'
.>>> os.environ['TZ'] = 'US/Eastern' >>> time.tzset() >>> time.tzname ('EST', 'EDT') >>> os.environ['TZ'] = 'Egypt' >>> time.tzset() >>> time.tzname ('EET', 'EEST')
相关用法
- Python time.tzset()用法及代码示例
- Python time.tzname()用法及代码示例
- Python time.time()用法及代码示例
- Python time.thread_time()用法及代码示例
- Python time.time_ns()用法及代码示例
- Python time.thread_time_ns()用法及代码示例
- Python time.monotonic()用法及代码示例
- Python time.asctime()用法及代码示例
- Python time.clock()用法及代码示例
- Python time.daylight()用法及代码示例
- Python time.perf_counter()用法及代码示例
- Python time.get_clock_info()用法及代码示例
- Python time.strptime用法及代码示例
- Python time.gmtime()用法及代码示例
- Python time.strftime用法及代码示例
- Python time.mktime()用法及代码示例
- Python time.sleep()用法及代码示例
- Python time.clock_gettime_ns()用法及代码示例
- Python time.process_time_ns()用法及代码示例
- Python time.monotonic_ns()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 time.tzset。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。