Python tuples tupel memungkinkan nilai duplikat

thistuple = ("apple", "banana", "cherry", "apple", "cherry")
print(thistuple)
Programmer of empires