gpt4 book ai didi

Python 箭头毫秒

转载 作者:太空宇宙 更新时间:2023-11-04 07:15:23 25 4
gpt4 key购买 nike

我想弄清楚一件简单的事情 - 如何将 arrow.Arrow 对象转换为毫秒。我正在阅读以下 thread但我仍然不清楚如何以毫秒为单位获得一个长数字。

我想要这样的东西:

def get_millis(time: arrow.Arrow):
... some magic goes here ...


print(get_millis(time))
OUTPUT:
1518129553227

谢谢

最佳答案

这是一个不雅的答案:从您的链接问题中,您可以将毫秒作为字符串获取,然后将它们添加到时间戳中:

import arrow
now = arrow.utcnow()
s = now.timestamp
ms = int(now.format("SSS"))
print(s * 1000 + ms)

打印:

1518131043594

关于Python 箭头毫秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48695973/

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