python program to print date and time code example
Example 1: python print datetime
import datetime
print("Now:", datetime.datetime.now())
Example 2: python printing date
import datetime
print(datetime.datetime.now()) # --> (year, month, day, hour, minute, second, millisecond)