Answers for "time in 12 hour format python"

0

python datetime module print 12 hour clock

from datetime import datetime

now = datetime.now()

print(now.strftime('%Y/%m/%d %H:%M:%S')) #24-hour format
print(now.strftime('%Y/%m/%d %I:%M:%S')) #12-hour format
Posted by: Guest on June-29-2020
0

python datetime into 12-hour format

d.strftime("%I:%M")
Posted by: Guest on July-27-2021

Code answers related to "time in 12 hour format python"

Python Answers by Framework

Browse Popular Code Answers by Language