python for loop if one line code example
Example 1: one-line for loop python
[thing for thing in list_of_things]
Example 2: if statement in one-line for loop python
>>> [(i) for i in my_list if i=="two"]
['two']
[thing for thing in list_of_things]
>>> [(i) for i in my_list if i=="two"]
['two']