extract the hour 00-12 format of the time python 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