Python 中的 Time tzname() 返回两个字符串的元组,其中第一个字符串是本地非 DST 时区的名称,第二个字符串是本地 DST 时区的名称。
用法:time.tzname()
返回:它将返回字符串的元组
例子1:获取夏令时和非夏令时的Python程序
Python3
# import time module
import time
# get the DST
print(time.tzname)
输出:
('UTC', 'UTC')
例子2:使用索引号获取字符串
Python3
# import time module
import time
# get the DST of first string
print(time.tzname[0])
# get the DST of second string
print(time.tzname[1])
输出:
UTC UTC
相关用法
- Python Wand function()用法及代码示例
- Python Numbers choice()用法及代码示例
- Python ord()用法及代码示例
- Python sum()用法及代码示例
注:本文由纯净天空筛选整理自ojaswilavu8128大神的英文原创作品 Python time.tzname() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。