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 marcinokonek99
def time_converter(time):
#replace this for solution
time=time.replace(':',' ').split()
x=len(time[0])
if x!=2:
time[0]='0'+time[0][0]
hours=(ord(time[0][0])-48)*10+(ord(time[0][1])-48)
if hours==0:
hours=12
return str(hours)+":"+time[1]+" a.m."
if hours<12:
return str(hours)+":"+time[1]+" a.m."
if hours==12:
return str(hours)+":"+time[1]+" p.m."
hours=hours-12
return str(hours)+":"+time[1]+" p.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('00:30') == '12:30 a.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!")
Nov. 26, 2018