gpt4 book ai didi

python - 如何在 Python 中获取 UTC 时间?

转载 作者:IT老高 更新时间:2023-10-28 21:09:52 30 4
gpt4 key购买 nike

我如何获得 UTC 时间,即距离 Unix epoch 的毫秒数1970 年 1 月 1 日?

最佳答案

使用 datetime.utcnow() :

from datetime import datetime
datetime.utcnow()

当您需要计算两个日期之间花费的时间时,您只需减去结束日期和开始日期即可。这种减法的结果是 timedelta object.

来自 python 文档:

class datetime.timedelta([days[, seconds[, microseconds[, milliseconds[, minutes[, hours[, weeks]]]]]]])

这意味着默认情况下,您可以获得其定义中提到的任何字段 -天、秒、微秒、毫秒、分钟、小时、周。 timedelta 实例也有 total_seconds() 方法:

Return the total number of seconds contained in the duration.Equivalent to (td.microseconds + (td.seconds + td.days * 24 * 3600) *106) / 106 computed with true division enabled.

关于python - 如何在 Python 中获取 UTC 时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15940280/

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