gpt4 book ai didi

python - 如何在 python 3.5 中以毫秒而不是微秒获取日期时间的 ISO8601 字符串

转载 作者:行者123 更新时间:2023-12-02 05:14:44 25 4
gpt4 key购买 nike

给定以下日期时间:

d = datetime.datetime(2018, 10, 9, 8, 19, 16, 999578, tzinfo=dateutil.tz.tzoffset(None, 7200))

d.isoformat() 结果为字符串:

'2018-10-09T08:19:16.999578+02:00'

如何获取包含毫秒而不是微秒的字符串:

'2018-10-09T08:19:16.999+02:00'

strftime() 在这里不起作用:%z 返回 0200 而不是 02:00,并且只有 %f 来获取微秒,没有毫秒的占位符。

最佳答案

如果没有冒号的时区可以,你可以使用

d = datetime.datetime(2018, 10, 9, 8, 19, 16, 999578, 
tzinfo=dateutil.tz.tzoffset(None, 7200))
s = d.strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + d.strftime('%z')
# '2018-10-09T08:19:16.999+0200'

对于冒号,您需要拆分时区并自行添加。对于 UTC,%z 也不会生成 Z

<小时/>

Python 3.6 支持 timespec='milliseconds' 所以你应该这样填充:

try:
datetime.datetime.now().isoformat(timespec='milliseconds')
def milliseconds_timestamp(d):
return d.isoformat(timespec='milliseconds')

except TypeError:
def milliseconds_timestamp(d):
z = d.strftime('%z')
z = z[:3] + ':' + z[3:]
return d.strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + z

鉴于 Python 3.6 中的后一个定义,

>>> milliseconds_timestamp(d) == d.isoformat(timespec='milliseconds')
True

>>> milliseconds_timestamp(d)
'2018-10-09T08:19:16.999+02:00'

关于python - 如何在 python 3.5 中以毫秒而不是微秒获取日期时间的 ISO8601 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52944181/

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