gpt4 book ai didi

python - 如何在 Python 中解析具有 UTC 偏移量的时区?

转载 作者:太空狗 更新时间:2023-10-29 22:01:20 26 4
gpt4 key购买 nike

假设我有一个像“2009-08-18 13:52:54-04”这样的时区。我可以使用如下一行来解析其中的大部分内容:

datetime.strptime(time_string, "%Y-%m-%d %H:%M:%S")

但是,我无法设置时区。有一个 %Z 可以处理文本时区(“EST”、“UTC”等),但我没有看到任何可以解析“-04”的东西。

最佳答案

也许你可以使用 dateutil.parser.parsewiki.python.org/WorkingWithTime 中也提到了该方法.

>>> from dateutil.parser import parse
>>> parse("2009-08-18 13:52:54-04")
datetime.datetime(2009, 8, 18, 13, 52, 54, tzinfo=tzoffset(None, -14400))

(这个问题是重复的吗?)

关于python - 如何在 Python 中解析具有 UTC 偏移量的时区?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1302161/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com