list comprehension with multiple statements code example
Example 1: list comprehension if else
l = [22, 13, 45, 50, 98, 69, 43, 44, 1]
a = [x + 1 if x >= 45 else x + 5 for x in l]
Example 2: list comprehension python one line
doubled_odds = [n * 2 for n in numbers if n % 2 == 1]