if for python 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: python if else one line
if(whatever) else #code here
>>> [(i) for i in my_list if i=="two"]
['two']
if(whatever) else #code here