from datetime import datetime
# datetime object containing current date and time
now = datetime.now()
print("now =", now)
#Output: now = 2021-06-25 07:58:56.550604
# dd/mm/YY H:M:S
dt_string = now.strftime("%d/%m/%Y %H:%M:%S")
print("date and time =", dt_string)
#Output: date and time = 25/06/2021 07:58:56
# Python program to demonstrate datetime object
# import datetime class
from datetime import datetime
# Calling now() function
today = datetime.now()
print("Current date and time is", today)