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 flpo
from time import strptime as p, strftime as f
time_converter = lambda t: f("%-I:%M %p", p(t, "%H:%M"))[:-1].lower() + '.m.'
May 17, 2018
Comments: