The `elif` and `ifelse` Statements
Learn about `elif` and `ifelse` syntax.
We'll cover the following...
So far with our conditional statements, we had an if
statement and an else
statement. This limits us to only two options, with each if statement evaluating either True
or False
outcomes. There ...