Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
time.str(p | f)time + (a | p).m. solution in Speedy category for Time Converter (24h to 12h) by fed.kz
import time
time_converter = lambda now: time.strftime('%-I:%M ', time.strptime(now,'%H:%M')) + ('a.m.', 'p.m.')[now[:2] > '11']
Nov. 28, 2018