Answers for "python iterating through array"

5

how to loop through list in python

thisList = [1, 2, 3, 4, 5, 6]

x = 0
while(x < len(thisList)):
    print(thisList[x])
    x += 1
    
# or you can do this:

for x in range(0, len(thisList)):
    print(thisList[x])
    
#or you can do this

for x in thisList:
    print(x)
Posted by: Guest on April-11-2020

Code answers related to "python iterating through array"

Python Answers by Framework

Browse Popular Code Answers by Language