iteration list python code example

Example 1: python loop through list

list = [1, 3, 6, 9, 12] 
   
for i in list: 
    print(i)

Example 2: list loop python

list = [1, 3, 5, 7, 9] 

# with index   
for index, item in enumerate(list): 
    print (item, " at index ", index)
    
# without index
for item in list:
  	print(item)

Example 3: 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)

Example 4: what is iteration in python

# Iteration is the execution of a statement repeatedly and without
# making any errors.

Tags:

Go Example