Lesson 9: Using Else and Elif
What if a program needs to respond to several possible situations instead of giving only a yes-or-no response? A simple `if` statement can begin that decision, but Python also provides one connected structure for several possible outcomes. This section introduces the parts of an `if`/`elif`/`else` structure and explains how they fit together.
