Holen Sie sich die aktuelle Datumsdatenzeit

from datetime import date

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