Result Size: 625 x 571
demo_tuple_loop.py:
x
 
thistuple = ("apple", "banana", "cherry")
for x in thistuple:
  print(x)
C:\Users\My Name>python demo_tuple_loop.py
apple
banana
cherry