将numpy datetime64转换为长整数并返回

时间:2017-11-29 22:05:25

标签: python numpy datetime

如何将NumPy datetime64转换为long ineteger并返回?

import numpy as np
import datetime

np.datetime64(datetime.datetime.now()).astype(long)

给出值1511975032478959

np.datetime64(np.datetime64(datetime.datetime.now()).astype(long))

给出错误:

ValueError: Converting an integer to a NumPy datetime requires a specified unit

2 个答案:

答案 0 :(得分:3)

您需要指定long int的单位(在本例中为微秒)。

 np.datetime64(np.datetime64(datetime.datetime.now()).astype(long), 'us')

返回

 numpy.datetime64('2017-11-29T17:11:44.638713')

答案 1 :(得分:0)

'us'转换为微秒。如果您需要其他格式,请使用: enter image description here

如图here