iterasi lebih dari tupel dalam python

thistuple = ("apple", "banana", "cherry")
for x in thistuple:
  print(x)
Programmer of empires