Answers for "array iteration in python"

5

python for loop with array

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'
Posted by: Guest on July-18-2020
4

iterate through an array python

colors = ["red", "green", "blue", "purple"]
i = 0
while i < len(colors):
    print(colors[i])
    i += 1
Posted by: Guest on August-29-2020
2

python for loop in array

for i in foo:
  print(i) #outputs 'foo' then 'bar'
Posted by: Guest on April-07-2021
-1

python for loop array

print("Hello, world")
Posted by: Guest on March-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language