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 Chnelik_Sebastian
def time_converter(time):
#we evaluate the first 2 characters as Int to decide which convertion to realise
hour=int(time[0:2])
if hour>12:
time=str(hour-12)+time[2:]+" p.m."
elif hour==12:
time=time+" p.m."
elif hour==0:
time=str(hour+12)+time[2:]+" a.m."
else:
time=str(hour)+time[2:]+" a.m."
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.'
print("Coding complete? Click 'Check' to earn cool rewards!")
Sept. 5, 2019