1[statement if condition else statement for _ in iterable_object]
2#statement are without assignment
1l = [22, 13, 45, 50, 98, 69, 43, 44, 1]
2a = [x + 1 if x >= 45 else x + 5 for x in l]
1>>> original_prices = [1.25, -9.45, 10.22, 3.78, -5.92, 1.16]
2>>> prices = [i if i > 0 else 0 for i in original_prices]
3>>> prices
4[1.25, 0, 10.22, 3.78, 0, 1.16]