Jak zdobyć Cuurent i Fulldate w Python

from datetime import date

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