Get your own Python server Result Size: 625 x 565
x
 
thistuple = ("apple", "banana", "cherry")
i = 0
while i < len(thistuple):
  print(thistuple[i])
  i = i + 1
apple
banana
cherry