Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second. Testing f-string and format solution in Clear category for Time Converter (24h to 12h) by amvasiliev80
def time_converter(time): # experiments with f-string and format
res_t = (h + 12 if h < 1 else h, 'a') if (h:= int(time[0:2]) ) < 12 else (h - 12 if h - 12 else 12, 'p')
# return '{}:{} {}.m.'.format(res_t[0], time[3:5], res_t[1])
return f'{res_t[0]}:{time[3:5]} {res_t[1]}.m.' # I like it!
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. 6, 2021