สอนเขียน Python แสดงวันที่ปัจจุบัน ด้วย module datetime สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python วันที่ปัจจุบัน
import datetime
now = datetime.datetime.now()
print('Now '+str(now.day)+'/'+str(now.month)+'/'+str(now.year))
ผลลัพธ์
Now 22/12/2021
โค้ดด้านบน import datetime เพื่อดึงวันที่ปัจจุบันของภาษา Python จากนั้นสร้างตัวแปร now ดึงวันที่ปัจจุบันออกมา เวลาใช้งาน now.day คือดึงวันที่ ส่วน now.month คือดึงเดือน และ now.year คือดึงปี