Python| numpy.datetime64() 方法
借助numpy.datetime64()
方法,我们可以使用numpy.datetime64()
方法以特定格式(即年-月-日)获取 numpy 数组中的日期。
Syntax : numpy.datetime64(date)
Return : Return the date in a format ‘yyyy-mm-dd’.
示例 #1:
在这个例子中,我们可以看到通过使用numpy.datetime64()
方法,我们能够以特定格式获取日期,即 yyyy-mm-dd。
# import numpy
import numpy as np
# using numpy.datetime64() method
gfg = np.array(np.datetime64('2019-08-26'))
print(gfg)
输出 :
array(‘2019-08-26′, dtype=’datetime64[D]’)
示例 #2:
# import numpy
import numpy as np
# using numpy.datetime64() method
gfg = np.array(np.datetime64('2019-08', 'D'))
print(gfg)
输出 :
array(‘2019-08-01′, dtype=’datetime64[D]’)