python list comprehension elif
>>> l = [1, 2, 3, 4, 5]
>>> ['yes' if v == 1 else 'no' if v == 2 else 'idle' for v in l]
['yes', 'no', 'idle', 'idle', 'idle']
python list comprehension elif
>>> l = [1, 2, 3, 4, 5]
>>> ['yes' if v == 1 else 'no' if v == 2 else 'idle' for v in l]
['yes', 'no', 'idle', 'idle', 'idle']
python if elif else list comprehension
# Basic syntax for if:
desired_elements = [f(x) for x in iterable_object if condition]
# Basic syntax for if else:
desired_elements = [f(x) if condition else g(x) for x in iterable_object]
# Basic syntax for if elif else:
desired_elements = [f(x) if condition elif condition_2 g(x) else h(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]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us