Python时间戳格式(以纳秒为单位)

时间:2019-08-26 17:58:12

标签: python python-3.x datetime

我有一个REST API,它以str'2018-10-31T00:29:42.718061199Z'返回创建日期

为了执行任何操作,我需要将此字符串转换为datetimeobject。 但是,我一直都遇到错误:

date_obj = "2018-10-31T00:29:42.718061199Z"
datetime_object = datetime.strptime(date_obj, "%Y-%m-%dT%H:%M:%S.000%fZ" )

ValueError: time data '2018-10-31T00:29:42.718061199Z' does not match format '%Y-%m-%dT%H:%M:%S.000%fZ'

然后我读到,datetime不支持以纳秒为单位的时间戳。还有其他处理方式吗?

我正在使用python 3.5。

0 个答案:

没有答案