how to loop list in python code example
Example 1: python loop through list
list = [1, 3, 6, 9, 12]
for i in list:
print(i)
Example 2: how to cycle a list in python
it.dropwhile(lambda x: x != 4, it.cycle(l))
list = [1, 3, 6, 9, 12]
for i in list:
print(i)
it.dropwhile(lambda x: x != 4, it.cycle(l))