Python Loop Melalui Ukuran Langkah Array 2

myList = [1,2,3,4,5,6]
i = 0
while i < len(myList):
  print(myList[i])
  i+=2
  
Orestis Lomis