Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Time Converter (24h to 12h) by r0ck37
def time_converter(time):
hours, minutes = int(time.split(':')[0]), time.split(':')[1]
if hours >=12:
if hours >12:
hours = hours - 12
time = "{}:{} p.m.".format(hours,minutes)
else:
if hours == 0:
hours += 12
time = "{}:{} a.m.".format(hours,minutes)
return time
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.'
assert time_converter('00:00') == '12:00 a.m.'
print("Coding complete? Click 'Check' to earn cool rewards!")
Nov. 6, 2019