python for loop shorthand code example
Example 1: one-line for loop python
[thing for thing in list_of_things]
Example 2: python for loop one line
>>> x = [1, 2, 3, 4, 5]
>>> y = [2*a for a in x if a % 2 == 1]
>>> print(y)
[2, 6, 10]
Example 3: shorthand for loop python
result = [number for number in numbers if number > 5]
Example 4: shorthand for loop python
[function(number) for number in numbers if condition(number)]