Python:从 `datetime.datetime` 转换为 `time.time`

时间:2023-02-13
本文介绍了Python:从 `datetime.datetime` 转换为 `time.time`的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在 Python 中,如何将 datetime.datetime 转换为从 time.time 函数获得的那种 float?

In Python, how do I convert a datetime.datetime into the kind of float that I would get from the time.time function?

推荐答案

使用时间元组方法不难,仍然保留微秒:

It's not hard to use the time tuple method and still retain the microseconds:

>>> t = datetime.datetime.now()
>>> t
datetime.datetime(2011, 11, 5, 11, 26, 15, 37496)

>>> time.mktime(t.timetuple()) + t.microsecond / 1E6
1320517575.037496

这篇关于Python:从 `datetime.datetime` 转换为 `time.time`的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:如何使用 Python 选择一年中的所有星期日? 下一篇:根据列日期在数据框中添加每个月的行

相关文章

最新文章