“Python itérant sur une liste” Réponses codées

Python pour boucle avec tableau

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

Python itérant sur une liste

# a 'while' loop runs until the condition is broken
a = "apple"
while a == "apple":
  a = "banana" # breaks loop as 'a' no longer equals 'apple'
  
# a 'for' loop runs for the given number of iterations...
for i in range(10):
  print(i) # will print 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

# ... or through a sequence
array = [3, 6, 8, 2, 1]
for number in array:
  print(number) # will print 3, 6, 8, 2, 1
panda

Réponses similaires à “Python itérant sur une liste”

Questions similaires à “Python itérant sur une liste”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code