loop python através da matriz Tamanho 2
myList = [1,2,3,4,5,6]
i = 0
while i < len(myList):
print(myList[i])
i+=2
Orestis Lomis
myList = [1,2,3,4,5,6]
i = 0
while i < len(myList):
print(myList[i])
i+=2