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
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
multiple variables in for loop python
for i, j in zip(range(x), range(y)):
# Stuff...
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
for i in a for j in a loop python
for i, j in zip(range(x), range(y)):
...
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us