Most simple way with for:
# example list list = [1, 2, 22, 55, 29] # Using for loop for i in list: print(i)