Exit Quiz
Question 1 of 6
1
of 6
Which of the following statements accurately describes multi-path selection in Python?
Select 3 answers
You can have more than two options for your code to choose from.
The computer checks each condition in order.
All the code inside every
if
,
elif
, and
else
block runs.
It helps your program make different choices based on what's True.
Think about what happens if the first condition in an
if-elif-else
statement is True.
Need a hint?
Check