Python 2.1The video for this lesson is on its way.
Everything else is ready: study the parts, the key terms and the quiz below.
- Part 11Choosing with if: a weekend check that is always true
- Part 22The if statement: the condition, the colon and the indented block
- Part 33Indentation, IndentationError and the missing colon
- Part 44else and elif: two branches, and more than two
- Part 55The conditional expression: if and else in one line
- Part 66Truthiness: which values count as True, and the weekend check explained
- Part 77The order of elif, separate if statements, and nesting
- Part 88match and case for fixed values, and the capture pattern mistake
- Part 99Recap and your challenge
Python 2.1Code walkthrough9 parts
if, elif and else
Make the program choose.
Loading your progress…
In this lesson9 parts
- 01Choosing with if: a weekend check that is always true
- 02The if statement: the condition, the colon and the indented block
- 03Indentation, IndentationError and the missing colon
- 04else and elif: two branches, and more than two
- 05The conditional expression: if and else in one line
- 06Truthiness: which values count as True, and the weekend check explained
- 07The order of elif, separate if statements, and nesting
- 08match and case for fixed values, and the capture pattern mistake
- 09Recap and your challenge