hour = 14
if hour < 12:
time_of_day = 'morning'
# add elif here...
else:
time_of_day = 'evening'
print("It's", time_of_day)
# expected output: It's afternoon
Python
Setting up Python environment...
Output
hour = 14
if hour < 12:
time_of_day = 'morning'
# add elif here...
else:
time_of_day = 'evening'
print("It's", time_of_day)
# expected output: It's afternoon
Setting up Python environment...