Unit 7 · Lesson 1
Build the idea
Start with the concept and its key vocabulary.
Use a for loop when the number of repetitions is known. OCR ERL includes both values written after for and to. Python range() excludes its stop value, so ERL 0 to 4 becomes Python range(5). The loop variable takes each value in turn before the body runs.
Repeating a set of instructions.
A loop that repeats a known number of times.
A variable whose value changes automatically for each pass through a for loop.
A Python function that produces the values used by a for loop; its stop value is excluded.