Dapatkan Datetime Tanggal Saat Ini

from datetime import date

today = date.today()
print("Today's date:", today)
MzanziLegend