extract hour from date in python in 12 hours format code example
Example: 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