Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
显然,pytz.UTC.localize(datetime.datetime.now())在将当前时间与其他“幼稚”时间对象进行比较之前,我必须先运行。
pytz.UTC.localize(datetime.datetime.now())
这是为什么?当前时间与特定时区无关吗?
>>> datetime.datetime.now().utcoffset() is None True
该now函数确实返回了一个天真的对象。它包含根据区域设置填充的日期和时间字段值。这就是提供单独的原因utcnow;这总是为您提供 UTC 字段值(尽管它仍然很幼稚)。
now
utcnow