Answers for "print time format python"

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/
Posted by: Guest on March-17-2020
1

display current local time in readable format

import time
time.strftime('%X %x %Z')
'16:08:12 05/08/03 AEST'
Posted by: Guest on May-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language