Back Navigation Next Navigation Video 11: Second Review Worksheet (page 2 of 3)

3. Blank lines in if, elif, or else blocks are fine.

4. We may have alternative execution with just an if-else statement.

5. We may have chained conditionals containing if-elif-else statements. We can have an unlimited number of elif clauses and the else clause is optional.

6. We may have nested conditionals where one conditional is nested within another. There is no nesting limit!

7. We may also have conditional execution with try and except blocks to run certain statement if an error occurs in the try block.