python list comprehension with if code example

Example 1: list comprehension python if else

[statement if condition else statement for _ in iterable_object]
#statement are without assignment

Example 2: python list comprehension if else

# if/else
[f(x) if condition(x) else '' for x in sequence]

Example 3: list comprehension if

[f(x) for x in sequence if condition]

Example 4: python list comprehension if else

>>> original_prices = [1.25, -9.45, 10.22, 3.78, -5.92, 1.16]
>>> prices = [i if i > 0 else 0 for i in original_prices]
>>> prices
[1.25, 0, 10.22, 3.78, 0, 1.16]