Concept Flow - Length and iteration methods
Start with a collection
Call len() function
Return number of items
Use for loop to iterate
Access each item one by one
End after last item
First, we find how many items are in a collection using len(). Then, we use a for loop to go through each item one by one until all are processed.