“Python para bucle con matriz” Código de respuesta

Python para bucle con matriz

foo = ['foo', 'bar']
for i in foo:
  print(i) #outputs 'foo' then 'bar'
for i in range(len(foo)):
  print(foo[i]) #outputs 'foo' then 'bar'
i = 0
while i < len(foo):
  print(foo[i]) #outputs 'foo' then 'bar'
Arrogant Anteater

Matriz de bucle de python

Stack Overflow requires cookies for authentication -- are your browser cookies enabled for this domain?

Respuestas similares a “Python para bucle con matriz”

Preguntas similares a “Python para bucle con matriz”

Más respuestas relacionadas con “Python para bucle con matriz” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código