Result Size: 625 x 571
โ€‹x
 
thistuple = ("apple", "banana", "cherry")
y = list(thistuple)
y.remove("apple")
thistuple = tuple(y)
โ€‹
print(thistuple)
โ€‹
('banana', 'cherry')