📜  Python time.tzname()函数

📅  最后修改于: 2022-05-13 01:54:48.584000             🧑  作者: Mango

Python time.tzname()函数

Python中的时间 tzname() 返回两个字符串的元组,其中第一个字符串是本地非 DST 时区的名称,第二个字符串是本地 DST 时区的名称。

示例 1 :获取 DST 和非 DST 的Python程序

Python3
# import time module
import time
  
# get the DST
print(time.tzname)


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')

示例 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