for loop python iterate through list code example
Example 1: python iterate list
lst = [10, 50, 75, 83, 98, 84, 32]
for x in range(len(lst)):
print(lst[x])
Example 2: python for loop with array
foo = ['foo', 'bar']
for i in foo:
print(i) #outputs 'foo' then 'bar'
for i in range(len(foo)):
print(foo[i]) #outputs 'foo' then 'bar'
i = 0
while i < len(foo):
print(foo[i]) #outputs 'foo' then 'bar'