Bharat
0
Q:

list comprehension for loop and if

l = [22, 13, 45, 50, 98, 69, 43, 44, 1]
a = [x + 1 if x >= 45 else x + 5 for x in l]
6
# if/else
[f(x) if condition(x) else '' for x in sequence]
7
[f(x) for x in sequence if condition]
4
matrix = [[1, 2], [3,4], [5,6], [7,8]]
transpose = [[row[i] for row in matrix] for i in range(2)]
print (transpose)
0

New to Communities?

Join the community