Concept Flow - For loop execution model
Start
Get next item from iterable
Is item available?
No→Exit loop
Yes
Execute loop body with item
Repeat: Get next item
The for loop gets each item from a list (or other iterable), runs the loop body with that item, and repeats until no items remain.