当我尝试使用 pytz 创建一些时区时,出现错误“struct.error: unpack requires a string argument of length 44”。对于其他人来说,它工作正常。
前两个效果很好。后两个给出错误:
import pytz
from pytz import timezone
tz_dk = timezone("Europe/Copenhagen")
tz_cn = timezone("Atlantic/Canary")
tz_us = timezone("US/Eastern")
tx_lo = timezone("Europe/London")
我打印了所有时区的列表,所有四个都在那里。
for tz in pytz.all_timezones:
print tz