如何将以纳秒为单位的纪元时间转换为人类可读? [英] How to convert epoch time with nanoseconds to human-readable?

查看:100
本文介绍了如何将以纳秒为单位的纪元时间转换为人类可读?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个以纳秒为单位的时间间隔的时间戳-例如自1970年1月1日以来的 1360287003083988472 纳秒.

I have a timestamp in epoch time with nanoseconds - e.g. 1360287003083988472 nanoseconds since 1970-01-01.

Python日期时间对象和转换方法仅支持毫秒级精度.

The Python datetime objects and conversion methods only support up to millisecond precision.

是否有一种简单的方法可以将该时期转换为人类可读的时间?

Is there an easy way to convert this epoch time into human-readable time?

推荐答案

首先,将其转换为 datetime 具有第二个精度的对象(被填充,未舍入):

First, convert it to a datetime object with second precision (floored, not rounded):

>>> from datetime import datetime
>>> dt = datetime.fromtimestamp(1360287003083988472 // 1000000000)
>>> dt
datetime.datetime(2013, 2, 7, 17, 30, 3)

然后要使其易于阅读,请使用 strftime() 方法返回到您获得的对象:

Then to make it human-readable, use the strftime() method on the object you get back:

>>> s = dt.strftime('%Y-%m-%d %H:%M:%S')
>>> s
'2013-02-07 17:30:03'

最后,再加上纳秒级的精度:

Finally, add back in the nanosecond precision:

>>> s += '.' + str(int(1360287003083988472 % 1000000000)).zfill(9)
>>> s
'2013-02-07 17:30:03.083988472'

这篇关于如何将以纳秒为单位的纪元时间转换为人类可读?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆