Concept Flow - List comprehension vs loop
Start with empty list
For each item in input
Apply expression to item
Add result to list
Repeat for all items
Return final list
Both list comprehension and loop build a new list by processing each item one by one and adding the result.
