python中datetime模块的isoformat函数返回不正确的偏移量
Posted
技术标签:
【中文标题】python中datetime模块的isoformat函数返回不正确的偏移量【英文标题】:isoformat function of datetime module in python returns incorrect offset 【发布时间】:2021-01-22 00:13:18 【问题描述】:所以我有 -
timezone = pytz.timezone('Asia/Kolkata')
one_time_stamp = '2017-06-01 05:30:00'
zoned_time_stamp = datetime.datetime.strptime(one_time_stamp, '%Y-%m-%d %H:%M:%S')
#This outputs 2017-06-01 05:30:00 which is fine.
print(zoned_time_stamp)
#notice timezone added
non_iso_zoned_ts = zoned_time_stamp.replace(microsecond=0, tzinfo=timezone)
# This outputs 2017-06-01 05:30:00 which is fine.
print(zoned_time_stamp)
iso_date = non_iso_zoned_ts.isoformat()
#This outputs 2017-06-01T05:30:00+05:53 which is incorrect. Ideally it should be 2017-06-01T05:30:00+05:30
print(iso_date)
现在我想知道为什么 isoformat 添加 05:53 的偏移量,而亚洲/加尔各答时区是 +05:30。参考 - https://www.zeitverschiebung.net/en/timezone/asia--kolkata
【问题讨论】:
考虑使用dateutil 或zoneinfo (Python 3.9)。 pytzwill be deprecated. 相关:***.com/questions/64237932/…(SO 上有 许多 更多...)。 【参考方案1】:在创建日期时间时,只为 tzinfo 添加 pytz 实例几乎总是错误的。使用 pytz 将天真的日期时间转换为时区感知实例的正确方法是使用区域的 localize 方法:
zone.localize(dt)
您的案例的输出:
>>> print(timezone.localize(zoned_time_stamp))
2017-06-01 05:30:00+05:30
clearly documented 在 tzinfo 中传递 pytz 实例不是创建本地化日期时间的受支持方式。然而,这也是 Python 代码中常见的错误 - 估计很多用户没有阅读文档!
要了解为什么不正确的方法显示了它的作用(奇怪的 +05:53
偏移),请参阅 Paul Ganssle 的 pytz: The Fastest Footgun in the West。
【讨论】:
以上是关于python中datetime模块的isoformat函数返回不正确的偏移量的主要内容,如果未能解决你的问题,请参考以下文章
python中datetime模块中strftime/strptime函数