Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Time Converter (12h to 24h) by BrianMcleod
def time_converter(time):
words = time.split()
[hh, mm] = [int(s) for s in words[0].split(':')]
if words[1] == 'p.m.':
hh += 12 if hh != 12 else 0
return f"{hh:02}:{mm:02}"
else:
hh = hh%12
return f"{hh:02}:{mm:02}"
if __name__ == '__main__':
print("Example:")
print(time_converter('9:30 p.m.'))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert time_converter('12:30 p.m.') == '12:30'
assert time_converter('9:00 a.m.') == '09:00'
assert time_converter('11:15 p.m.') == '23:15'
print("Coding complete? Click 'Check' to earn cool rewards!")
Aug. 22, 2018