python datetime module print 12 hour clock

132

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

Comments

Submit
0 Comments