Answers for "iterating through array with for loop in 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

Code answers related to "iterating through array with for loop in python"

Python Answers by Framework

Browse Popular Code Answers by Language