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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。