Answers for "iterate line python"

9

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
0

how to loop through lines python

print(stripped_line)
Posted by: Guest on December-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language