python today() code example
Example 1: today date in python
from datetime import date
today = date.today().strftime("%d-%m-%Y")
Example 2: find todays date in python
from datetime import datetime
# Current date time in local system
print(datetime.now())
print(datetime.date(datetime.now())) ##For Date
Example 3: today date python
today = datetime.today().strftime("%Y-%m-%d %H:%M:%S")
Example 4: python datetime now
import datetime
print(datetime.datetime.now()) #datetime.datetime.now() is the syntax