We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
def what_time_is_it(hour):
if hour == 2:
return "taco time"
elif hour == 12:
return "peanut butter jelly time"
else:
return "nap time"
time = what_time_is_it(2)
print(time)
time = what_time_is_it(12)
time = what_time_is_it(7)