demo_tuple_loop.py:
thistuple = ("apple", "banana", "cherry") for x in thistuple: print(x)
➜ begtut>python demo_tuple_loop.py
apple
banana
cherry