Answers for "go through 3 arrays in for loop in python"

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
1

for i in a for j in a loop python

for i, j in zip(range(x), range(y)):
  ...
Posted by: Guest on March-02-2020

Code answers related to "go through 3 arrays in for loop in python"

Python Answers by Framework

Browse Popular Code Answers by Language