iterating through list python code example
Example 1: python loop through list
list = [1, 3, 6, 9, 12]
for i in list:
print(i)
Example 2: iterate through a list
my_list = ["Hello", "World"]
for i in my_list:
print(i)
Example 3: python iterate list
lst = [12, 123, 1234, 12345]
for i in lst:
print(i)
**********************result*********************
12
123
1234
12345
Example 4: python iterate list
for var_name in input_list_name: