Python time tzset()方法
Python time tzset()方法
Python time tzset() 根據(jù)環(huán)境變量TZ重新初始化時(shí)間相關(guān)設(shè)置。
標(biāo)準(zhǔn)TZ環(huán)境變量格式:
std offset [dst [offset [,start[/time], end[/time]]]]
參數(shù)
- std 和 dst:三個(gè)或者多個(gè)時(shí)間的縮寫(xiě)字母。傳遞給 time.tzname.
- offset: 距UTC的偏移,格式: [+|-]hh[:mm[:ss]] {h=0-23, m/s=0-59}。
- start[/time], end[/time]: DST 開(kāi)始生效時(shí)的日期。格式為 m.w.d — 代表日期的月份、周數(shù)和日期。w=1 指月份中的第一周,而 w=5 指月份的最后一周。'start' 和 'end' 可以是以下格式之一:
- Jn: 儒略日 n (1 <= n <= 365)。閏年日(2月29)不計(jì)算在內(nèi)。
- n: 儒略日 (0 <= n <= 365)。 閏年日(2月29)計(jì)算在內(nèi)
- Mm.n.d: 日期的月份、周數(shù)和日期。w=1 指月份中的第一周,而 w=5 指月份的最后一周。
- time:(可選)DST 開(kāi)始生效時(shí)的時(shí)間(24 小時(shí)制)。默認(rèn)值為 02:00(指定時(shí)區(qū)的本地時(shí)間)。
語(yǔ)法
time.tzset()
參數(shù)
- NA。
返回值
該函數(shù)沒(méi)有返回值。
實(shí)例
以下實(shí)例展示了 tzset() 函數(shù)的使用方法:
#!/usr/bin/python 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')
以上實(shí)例輸出結(jié)果為:
13:00:40 02/17/09 EST 05:00:40 02/18/09 AEDT
相關(guān)文章
- Python Number 數(shù)字
- Python2 與 Python3?? 版本區(qū)別
- Python 數(shù)組
- Python 高級(jí)鏈表
- Python 堆
- Python 排序算法
- Python3 注釋
- Python3 字典(Dictionary)
- Python3 迭代器
- Python3 正則表達(dá)式
- Python ceil() 函數(shù)
- Python round() 函數(shù)
- Python os.fstat() 方法
- Python os.fsync() 方法
- Python os.lchown() 方法
- Python os.lseek() 方法
- Python os.statvfs() 方法
- Python os.tmpfile() 方法
- Python Tuple 元組 tuple()方法
- Python time localtime()方法