What does looping an Array in Python means?

You can use the for loop to loop through all the elements of an array.

Example:

# Python3 code to iterate over a list
list = [1, 3, 5, 7, 9]
   
# Using for loop
for i in list:
    print(i)

Output: 


1
3
5
7
9