Answers for "for loop with if in one line python"

11

python if else one line

x = 'foo' if bar else 'baz'
Posted by: Guest on April-05-2020
6

python for loop one line

>>> x = [1, 2, 3, 4, 5]
>>> y = [2*a for a in x if a % 2 == 1]
>>> print(y)
[2, 6, 10]
Posted by: Guest on July-10-2020

Code answers related to "for loop with if in one line python"

Python Answers by Framework

Browse Popular Code Answers by Language