how to use for loop for two variables python code example
Example 1: multiple variables in for loop python
for i, j in zip(range(x), range(y)):
# Stuff...
Example 2: how to create multiple variables in a loop python
# i gets added to the end of the var name
i = 1
for n in range(5):
globals()["w" + str(i)] = ###Do what you want here
i += 1