Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Time Converter (24h to 12h) by krk05
def time_converter(time):
#replace this for solution
godzina = ""
if time[:2] == "00":
godzina += "12:"+time[3:5]+ " a.m."
elif time[0] == "0":
godzina += time[1] + ":" + time[3:5] + " a.m."
elif int(time[:2]) < 12:
godzina += time[:2] + ":" + time[3:5] + " a.m."
elif time[:2] == "12":
godzina += time[:2] + ":" + time[3:5] + " p.m."
else:
godzina += str(int(time[:2])%12) + ":" + time[3:5] + " p.m."
return godzina
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!")
Nov. 17, 2018