comment obtenir cuurent et fulldate en python

from datetime import date

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