Answers for "loop through indices of numpy array"

5

python for loop array index

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

Code answers related to "loop through indices of numpy array"

Python Answers by Framework

Browse Popular Code Answers by Language