2
我有這行代碼:這個tzinfo變量有什麼問題?
datetime.datetime.fromtimestamp(0, "<DstTzInfo 'US/Pacific' PST-1 day, 16:00:00 STD>")
它不斷給我這個錯誤:
TypeError: tzinfo argument must be None or of a tzinfo subclass, not type 'str'
什麼是tzinfo
,從哪裏去了?
注:使用'.localize()'可能引入[在結果歧義](HTTP://pytz.sourceforge .NET /#問題與 - 本地時間)。 [將時間戳轉換爲utc日期時間對象,然後將其轉換爲給定的時區](http://stackoverflow.com/a/23051332/4279)以避免它。 – jfs