how to print just the date python code example
Example: python printing date
import datetime
print(datetime.datetime.now()) # --> (year, month, day, hour, minute, second, millisecond)
import datetime
print(datetime.datetime.now()) # --> (year, month, day, hour, minute, second, millisecond)