Iterate trough list with for loop :
# example list list = [1, 2, 22, 55, 29] # for loop for i in list: print(i)