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 Max_Fiona
import time
def time_converter(time):
#replace this for solution
split_time = time.split(':')
hh = int(split_time[0])
mm = split_time[1]
if hh ==0 and mm == '00':
time = '12:00 a.m.'
if hh ==0 and int(mm) >0:
time = str(hh) + ':' + mm + ' a.m.'
if hh >0 and hh-12<0:
time = str(hh) + ':' + mm + ' a.m.'
if hh-12==0 and mm == '00':
time = '12:00 p.m.'
if hh-12==0 and int(mm) >0:
time = str(hh) + ':' + mm + ' p.m.'
if hh - 12>0:
time = str(hh-12) + ':' + mm + ' p.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!")
March 4, 2020