gpt4 book ai didi

python - 时间数据 '2019-06-02T16:19:27.000-04:00' 与格式 '%Y-%m-%dT%H:%M:%S.%fZ' 不匹配

转载 作者:行者123 更新时间:2023-12-02 23:33:03 25 4
gpt4 key购买 nike

当我这样做时,我收到了上面的错误:

datetime.strptime(item['dt'], "%Y-%m-%dT%H:%M:%S.%fZ")

即使我尝试:

datetime.strptime(item['dt'], "%Y-%m-%dT%H:%M:%S.%f")

我收到未转换的数据剩余:-04:00作为我的错误。

我做错了什么?

最佳答案

这是因为你的 utc 偏移量是 04:00 而不是 0400...试试这个:

datetime.datetime.strptime('2019-06-02T16:19:27.000-0400', "%Y-%m-%dT%H:%M:%S.%f%z")

输出:

datetime.datetime(2019, 6, 2, 16, 19, 27, tzinfo=datetime.timezone(datetime.timedelta(-1, 72000)))

%z 期待类似 hhmm 的内容

https://docs.python.org/3/library/datetime.html - 查看格式代码

关于python - 时间数据 '2019-06-02T16:19:27.000-04:00' 与格式 '%Y-%m-%dT%H:%M:%S.%fZ' 不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59258294/

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