list comprehension with for and if else code example

Example 1: list comprehension python if else

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

Example 2: 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 3: python list comprehension if else

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

Example 4: if else in list comprehension

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

Example 5: list comprehension python if else

[unicode(x.strip()) if x is not None else '' for x in row]

Example 6: list comprehension for loop and if

matrix = [[1, 2], [3,4], [5,6], [7,8]]
transpose = [[row[i] for row in matrix] for i in range(2)]
print (transpose)