使用 Numpy 打印今天、昨天和明天的日期
在该项目中,我们将使用 Numpy 库打印今天、昨天和明天的日期。
算法
Step 1: Import the numpy library. Step 2: find today's date using the datetime64() function. Step 3: find yesterday's date by subtracting the output of timedelta64() function from the output of datetime64() function. Step 4: Find yesterday's date by adding the output of timedelta64() function from the output of datetime64() function.
示例代码
import numpy as np todays_date = np.datetime64('today', 'D') print("Today's Date: ", todays_date) yesterdays_date = np.datetime64('today', 'D') - np.timedelta64(1, 'D') print("Yesterday's Date: ", yesterdays_date) tomorrows_date = np.datetime64('today', 'D') + np.timedelta64(1, 'D') print("Tomorrow's Date: ", tomorrows_date)
输出
Today's Date: 2021-02-16 Yesterday's Date: 2021-02-15 Tomorrow's Date: 2021-02-17
说明
在 Numpy 中,有可支持 datetime 功能的数据类型。函数被命名为“datetime64”,因为“datetime”这个名称已被 Python 中的一个库用作名称。
datetime64() 函数中的“D”参数用于以“日”为单位获取日期。timedelta64() 函数用于表达时间差,例如,天、小时、分、秒。
广告