ในโปรแกรมนี้ เราจะพิมพ์วันที่ของวันนี้ เมื่อวาน และพรุ่งนี้โดยใช้ไลบรารี 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
คำอธิบาย
ในจำนวนมากมีประเภทข้อมูลที่สนับสนุนฟังก์ชันวันที่และเวลา ชื่อ 'datetime64' ถูกกำหนดให้กับฟังก์ชันเพราะชื่อ 'datetime' ถูกใช้โดยไลบรารีใน Python แล้ว
พารามิเตอร์ 'D' ในฟังก์ชัน datetime64() ใช้สำหรับรับวันที่ในหน่วย 'days' ฟังก์ชัน timedelta64() ใช้สำหรับแสดงความแตกต่างของเวลา เช่น วัน ชั่วโมง นาที วินาที