“para bucle con 2 variables 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

para i en a para j en un bucle python

for i, j in zip(range(x), range(y)):
  ...
Light Louse

Variables múltiples en For Loop Python

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

para bucle con 2 variables python

i = 1
for n in range(5):
    globals()["w" + str(i)] = ###Do what you want here
    i += 1
manish kumar

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 “para bucle con 2 variables python”

Preguntas similares a “para bucle con 2 variables python”

Más respuestas relacionadas con “para bucle con 2 variables python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código