这里发生了什么?
>>> a = datetime.datetime.now()
# waiting....
>>> b = datetime.datetime.now()
>>> c = b - a
>>> c.seconds
4
>>> c.microseconds
884704
微秒怎么可能是秒数的 2 倍?我想要微秒的精度(然后自己将其转换为秒),但这似乎完全是错误的。
884704
微秒表示0.884704
秒。
>>> c = datetime.timedelta(seconds=4, microseconds=884704)
>>> c.seconds
4
>>> c.microseconds
884704
>>> print(c)
0:00:04.884704
要获得总秒数,您可以使用total_seconds()
:
>>> c.total_seconds()
4.884704