foreach python list code example

Example 1: python loop through list

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

Example 2: python for loop with array

foo = ['foo', 'bar']
for i in foo:
  print(i) #outputs 'foo' then 'bar'
for i in range(len(foo)):
  print(foo[i]) #outputs 'foo' then 'bar'
i = 0
while i < len(foo):
  print(foo[i]) #outputs 'foo' then 'bar'

Example 3: python foreach in a list

thislist = ["apple", "banana", "cherry"]

  for x in thislist:
  print(x)

Example 4: python iterate list

lst = [12, 123, 1234, 12345]
for i in lst:
  print(i)
**********************result*********************
12
123
1234
12345

Tags:

Go Example