Concept Flow - Iterating over lists
Start with list
Set index i = 0
Check: i < length of list?
No→Exit loop
Yes
Access list[i
Execute loop body
Increment i by 1
↩Back to Check
This flow shows how we start from the first item in the list, check if we still have items left, process the current item, then move to the next until all items are done.