iterate through a list looking for a value in python code example
Example: 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)