python if in for one line code example
Example 1: if statement in one-line for loop python
>>> [(i) for i in my_list if i=="two"]
['two']
Example 2: list comprehension python one line
doubled_odds = [n * 2 for n in numbers if n % 2 == 1]
>>> [(i) for i in my_list if i=="two"]
['two']
doubled_odds = [n * 2 for n in numbers if n % 2 == 1]