Answers for "how iterate list for given ount"

3

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

Code answers related to "how iterate list for given ount"

Python Answers by Framework

Browse Popular Code Answers by Language