user53817
0
Q:

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]
6
# if/else
[f(x) if condition(x) else '' for x in sequence]
7
# Basic syntax:
desired_elements = [f(x) if condition else g(x) for x in iterable_object]

# Example usage:
# Say you want to return the square of elements if elements are less 
# than 10, otherwise you just want to return the elements themselves:
your_list = [1, 7, 13, 11, 23, 2, 17, 42, 8, 5]
new_list = [x**2 if x < 10 else x for x in your_list]
print(new_list)
--> [1, 49, 13, 11, 23, 4, 17, 42, 64, 25]
1
[f(x) for x in sequence if condition]
4
[f(x) if condition else g(x) for x in sequence]
1

New to Communities?

Join the community