Run »
thistuple = ("apple", "banana", "cherry") y = list(thistuple) y.append("orange") thistuple = tuple(y) print(thistuple)
('apple', 'banana', 'cherry', 'orange')