Answers for "python loop through indices of list"

4

how to loop the length of an array pytoh

array = range(10)
for i in range(len(array)):
  print(array[i])
Posted by: Guest on March-07-2020
7

for loop with index python3

colors = ["red", "green", "blue", "purple"]

for i in range(len(colors)):
    print(colors[i])
Posted by: Guest on January-28-2020

Code answers related to "python loop through indices of list"

Python Answers by Framework

Browse Popular Code Answers by Language