Answers for "loop over a list python"

54

python loop through list

list = [1, 3, 6, 9, 12] 
   
for i in list: 
    print(i)
Posted by: Guest on June-25-2019
2

python iterate list

lst = [10, 50, 75, 83, 98, 84, 32]
 
for x in range(len(lst)): 
    print(lst[x])
Posted by: Guest on August-27-2020
0

how to cycle a list in python

it.dropwhile(lambda x: x != 4, it.cycle(l))
Posted by: Guest on March-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language