Ejemplo 1: múltiples variables 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
Ejemplo 2: múltiples variables en for loop python
for i, j in zip(range(x), range(y)):
# Stuff...
Ejemplo 3: cómo crear múltiples variables en un bucle de 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
Ejemplo 4: para i en a para j en un bucle python
for i, j in zip(range(x), range(y)):
...
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)