Multiple Decisions
elif statement
elif statement# Code Format:
if boolean_condition1:
# code here
elif boolean_condition2:
# code here
elif boolean_condition3:
# code here
else:
# code hereLast updated