python for multiple variables code example

Example 1: declare multiple variables at once python

a = b = c = "Hello, World"
print(a)
print(b)
print(c)
# OUTPUT:
# Hello, World
# Hello, World
# Hello, World

b = "foo"
c = "bar"
print(a)
print(b)
print(c)
# OUTPUT:
# Hello, World
# foo
# bar

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

Example 3: multiple variables in for loop python

for i, j in zip(range(x), range(y)):
    # Stuff...

Example 4: 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