gpt4 book ai didi

具有 ISO 格式的 Python UTC 时间戳

转载 作者:行者123 更新时间:2023-12-04 14:32:15 25 4
gpt4 key购买 nike

我知道有人问过这个问题,但那里没有提供解决方案。
Python UTC datetime object's ISO format doesn't include Z (Zulu or Zero offset)

我正在寻找一种在 Python 中使用这种格式生成 UTC 时间戳的干净方法。我需要的格式是2013-10-29T09:38:41.341Z .

具体来说,我需要在末尾包含“Z”。 Python的datetime.utcnow().isoformat()末尾不附加“Z”。

请注意,手动附加“Z”不是我可以接受的解决方案。我正在寻找一种干净的方法来做到这一点。

以 ISO 格式生成后缀 Z UTC 时间戳的干净方法是什么? ?

最佳答案

怎么样的东西

datetime.utcnow().isoformat()[:-3] + 'Z'

关于具有 ISO 格式的 Python UTC 时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42154763/

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