Tuple Negation Indexing en Python
thistuple = ("apple", "banana", "cherry")
print(thistuple[-1]) #cherry
print(thistuple[-2]) #banana
Programmer of empires
thistuple = ("apple", "banana", "cherry")
print(thistuple[-1]) #cherry
print(thistuple[-2]) #banana