Back Navigation Next Navigation Video 5: Conditionals (page 6 of 10)

Python also supports the chaining of an if-elif-else statement when there are more than two options. That is, we may need more than the two branches that are associated with if-else statements. One way to do this is by chaining conditionals using "elif" clauses. An elif clause has its own Boolean expression. There is no limit to the number "elif" clauses that may be used.

Conditionals

Reading Check: Your nose can remember 50,000 different scents.