print today's date in python code example

Example 1: get date and time python

from datetime import datetime
now = datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))


Output: 2020-06-19 10:34:45

Example 2: today date in python

from datetime import date
today = date.today().strftime("%d-%m-%Y")

Example 3: 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 4: print current date

from datetime import date

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

Example 5: python get today's date without time

now = datetime.date.today()

Tags:

Java Example