python print list with for loop code example
Example 1: iterate through an array python
colors = ["red", "green", "blue", "purple"]
i = 0
while i < len(colors):
print(colors[i])
i += 1
Example 2: how to loop through list in python
thisList = [1, 2, 3, 4, 5, 6]
x = 0
while(x < len(thisList)):
print(thisList[x])
x += 1
# or you can do this:
for x in range(0, len(thisList)):
print(thisList[x])
#or you can do this
for x in thisList:
print(x)