运行 ❯
获取您自己的
Python
服务器
×
转换方向
转换主题,深色/浅色
前往 Spaces
thistuple = ("apple", "banana", "cherry") y = list(thistuple) y.remove("apple") thistuple = tuple(y) print(thistuple)
('banana', 'cherry')