我对django的日期时间有一些问题。
from datetime import datetime
d = datetime(2000, 1, 1, <what do i put here, nothing works>)
# making it aware requires a 4th arg according to the docs, but no matter what
# i enter for that arg, it keeps giving me an error that tzinfo argument
must be None or of a tzinfo subclass
我无法在任何地方找到可以传递的可能tzinfo参数的可用选项...而且所有在线都有pytz模块,这不在我的电脑上。如果可能,我怎么能不使用pytz来做到这一点?
由于
答案 0 :(得分:0)
没关系,我只是因为花了这么多时间在这样的事情而生气,所以我没有直接思考,用时区导入替换(tzinfo = timezone.utc)就可以了。