gpt4 book ai didi

python - 如何使用带有小数秒的calendar.timegm()

转载 作者:太空宇宙 更新时间:2023-11-03 19:40:44 25 4
gpt4 key购买 nike

我有一个时间戳,我正在将其转换为自纪元以来的秒数。我一直在使用 calendar.timegm(timestamp) 但决定我也需要小数秒。我浏览了 python 文档,但没有找到任何东西。是否有一种方法可以执行相同的转换但不忽略小数秒?

这是我的时间戳的示例:2011 年 1 月 4 日 00:00:20.498

期望的输出:978134435.某事

最佳答案

您可以使用%f:

from datetime import datetime
d = "Jan 04 2011 00:00:20.498"
x = datetime.timestamp(datetime.strptime(d, "%b %d %Y %H:%M:%S.%f").replace(microsecond=int(d.split('.')[1])))
print(x)
#1294099220.000498
<小时/>

%f:十进制数形式的微秒,左侧补零。

关于python - 如何使用带有小数秒的calendar.timegm(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60441313/

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