Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Time Converter (24h to 12h) solution in Clear category for Time Converter (24h to 12h) by IRONKAGE
def time_converter(time):
h, m = map(int, time.split(':'))
return f"{(h - 1) % 12 + 1}:{m:02d} {'ap'[h>11]}.m."
if __name__ == '__main__':
print("Example:")
print(time_converter('12:30'))
assert time_converter('12:30') == '12:30 p.m.'
assert time_converter('09:00') == '9:00 a.m.'
assert time_converter('23:15') == '11:15 p.m.'
print("Coding complete? Click 'Check' to earn cool rewards!")
Oct. 11, 2019
Comments: