Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Step by step solution in Clear category for Time Converter (24h to 12h) by Krischtopp
def time_converter(time):
hour = int(time[:2]) # get hours as int
time_period = 'a.m.' if hour < 12 else 'p.m.' # a.m. or p.m.
hour %= 12 # get hours in 0-11 range
if hour == 0: hour = 12 # transform 0s into 12s
return '{}:{} {}'.format(hour, time[3:], time_period) # make the output string, minutes don't need any changes, so they can be copied
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!")
Feb. 2, 2020
Comments: