Answers for "for loop'' with two variables python"

1

multiple values in python loop for x,y

for x, y in zip(a, b):
    print x, y
Posted by: Guest on August-04-2020
5

multiple variables in for loop python

>>> for i, j in [(0, 1), ('a', 'b')]:
...     print('i:', i, 'j:', j)
...     
i: 0 j: 1
i: a j: b
Posted by: Guest on July-03-2020
0

multiple variables in for loop python

for i, j in zip(range(x), range(y)):
    # Stuff...
Posted by: Guest on July-03-2020

Code answers related to "for loop'' with two variables python"

Python Answers by Framework

Browse Popular Code Answers by Language