python how to loop through a list code example

Example 1: python loop through list

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

Example 2: how to iterate over a list in python

# Python list
my_list = [1, 2, 3]

# Python automatically create an item for you in the for loop
for item in my_list:
  print(item)

Example 3: Python Loop Lists

thislist = ["apple", "banana", "cherry"]
for x in thislist:
  print(x)

Example 4: how to cycle a list in python

it.dropwhile(lambda x: x != 4, it.cycle(l))

Example 5: python iterate list

for var_name in input_list_name: