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