Answers for "python one line loop"

15

one-line for loop python

[thing for thing in list_of_things]
Posted by: Guest on March-17-2020
2

making lists with loops in one line python

print([i for i in range(10)])
Posted by: Guest on June-25-2020
4

if statement in one-line for loop python

>>> [(i) for i in my_list if i=="two"]
['two']
Posted by: Guest on March-31-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

Python Answers by Framework

Browse Popular Code Answers by Language