Answer:
def timeOfDay(hour):
if hour == 0:
print("midnight")
elif hour == 12:
print("noon")
elif hour == 18:
print("dusk")
elif hour > 0 and hour < 12:
print("morning")
elif hour > 12 and hour < 18:
print("afternoon")
elif hour > 18 and hour < 24:
print("evening")
You can test the function as follows:
timeOfDay(8) # prints "morning"
timeOfDay(12) # prints "noon"
timeOfDay(18) # prints "dusk"
timeOfDay(5) # prints "morning"
timeOfDay(15) # prints "afternoon"
timeOfDay(22) # prints "evening"
Note that the elif conditions can be shortened by using the logical operator and to check the range of the hours.
Step-by-step explanation: