print time format python code example
Example 1: how to print time python 3
import datetime
now = datetime.datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))
# key: https://strftime.org/
Example 2: display current local time in readable format
import time
time.strftime('%X %x %Z')
'16:08:12 05/08/03 AEST'