Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Creative category for Time Converter (24h to 12h) by altarfinch
time_converter=lambda t:'{}:{} {}.m.'.format((int(t[0:2])-1)%12+1,t[3:5],['p','a'][int(t[0:2])<12])
May 25, 2018