how to know date and time in python 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)