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