“Variables múltiples en For Loop Python” Código de respuesta

Variables múltiples en For Loop Python

>>> for i, j in [(0, 1), ('a', 'b')]:
...     print('i:', i, 'j:', j)
...     
i: 0 j: 1
i: a j: b
Thoughtful Tapir

Variables múltiples en For Loop Python

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

Cómo crear múltiples variables en un bucle 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
Precious Panda

Respuestas similares a “Variables múltiples en For Loop Python”

Preguntas similares a “Variables múltiples en For Loop Python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código