loop through list of lists python code example

Example 1: python loop through list

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

Example 2: python iterate list

lst = [10, 50, 75, 83, 98, 84, 32]
 
for x in range(len(lst)): 
    print(lst[x])

Example 3: 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 4: iterate through a list

my_list = ["Hello", "World"]
for i in my_list:
  print(i)

Example 5: Python Loop Lists

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

Tags:

Java Example