Obtenga la fecha actual de fecha y hora

from datetime import date

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