Concept Flow - Basic list comprehension syntax
Start with iterable
Pick each item
Apply expression to item
Add result to new list
Repeat for all items
Return new list
The flow shows how list comprehension takes each item from an iterable, applies an expression, and collects results into a new list.