Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Time Converter (24h to 12h) solution in Uncategorized category for Time Converter (24h to 12h) by vvm70
def time_converter(time24):
h, m = time24.split(':')
return f"{str(int(12 if int(h) % 12 == 0 else int(h) % 12))}:{m} {'p.m.' if int(h) >= 12 else 'a.m.'}"
if __name__ == '__main__':
print("Example:")
print(time_converter('12:30'))
#These "asserts" using only for self-checking and not necessary for auto-testing
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!")
May 27, 2020
Comments: