Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Creative category for Time Converter (12h to 24h) by wbl4126
def time_converter(time):
hh, mm = time.split()[0].split(':')
return f"{int(hh) % 12 + 12 * ('p.m.' in time):02}:{int(mm):02}"
March 5, 2020
Comments: