借助numpy.datetime64()
方法,我們可以使用以下格式以特定格式(即year-month-day)以numpy數組的形式獲取日期numpy.datetime64()
方法。
用法:numpy.datetime64(date)
返回: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]’)
相關用法
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.unlink()用法及代碼示例
- Python PyTorch cos()用法及代碼示例
- Python Tensorflow abs()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python os.makedirs()用法及代碼示例
- Python Decimal exp()用法及代碼示例
- Python range()用法及代碼示例
- Python iter()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | numpy.datetime64() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。