We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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)