for x in list 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: x for x in python

# This could be said as:
x for x in thing: 
# Or
for x in thing:
    return x # Or whatever that puts x in some variable

# Same thing, just really dodgy syntax.

Example 4: python iterate list

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