for loop python multiple variables code example
Example 1: multiple values in python loop for x,y
for x, y in zip(a, b):
print x, y
Example 2: 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