loop of two variABLES code example
Example 1: for loop with 2 variables in c++
for (int x=0, y=0 ; x < 10 && y < 10 ; x++, y++)
{
// Your code here
}
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