how to use for and if condition in one python 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: one line if statement python
var = [expression1] if [condition] else [expression2]