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 adeq
def time_converter(time):
a=time.split(":")
dd=" a.m."
d=a[0]
e=list(d)
if e[0] =="0":
del e[0]
d=e[0]
if int(a[0]) > 12:
d=int(a[0])-12
dd=" p.m."
if d=="12":
dd=" p.m."
odp=str(d)+":"+a[1]+dd
if odp =="0:00 a.m.":
odp="12:00 a.m."
return odp
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. 8, 2018