pengindeksan negatif tuple dalam python

thistuple = ("apple", "banana", "cherry")
print(thistuple[-1]) #cherry
print(thistuple[-2]) #banana
Programmer of empires