expression inside list comprehension code example
Example 1: list comprehension
[expr for val1 in collection1 and val2 collection2 if(condition)]
Example 2: x for x in python
# This could be said as:
x for x in thing:
# Or
for x in thing:
return x # Or whatever that puts x in some variable
# Same thing, just really dodgy syntax.