我無法理解爲什麼當我輸入的日期時間,我無法訪問一些方法,例如進口日期時間,但沒有屬性fromtimestamp或時區 - Python的
import datetime
datetime(1970, 1, 1, tzinfo=timezone.utc)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'timezone' is not defined
任何想法,難道是pytz庫衝突?
謝謝
您使用的是什麼版本的Python? – Connor
Python 2.7.11 @Connor –