Answers for "how to loop a listpython"

54

python loop through list

list = [1, 3, 6, 9, 12] 
   
for i in list: 
    print(i)
Posted by: Guest on June-25-2019
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