Lesson 13: Repeating Code With While Loops
How can Python repeat a pattern without making its programme longer and harder to change? Repeating instructions individually can create inconsistencies when similar lines are edited separately. A loop is the control-flow structure for repetition, while an iteration is one complete pass through the repeated block. This distinction leads to the central idea of condition-controlled repetition: continuing while a condition remains true.
