Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Time Converter (24h to 12h) by fed.kz
import time
def time_converter(now):
return time.strftime('%I:%M %p',time.strptime(now,'%H:%M')).replace('AM','a.m.').replace('PM','p.m.').lstrip('0')
Oct. 17, 2018