python 3 loop through list code example
Example 1: python loop through list
list = [1, 3, 6, 9, 12]
for i in list:
print(i)
Example 2: Python Loop Lists
thislist = ["apple", "banana", "cherry"]
for x in thislist:
print(x)
list = [1, 3, 6, 9, 12]
for i in list:
print(i)
thislist = ["apple", "banana", "cherry"]
for x in thislist:
print(x)