#create a tuple tuplex = "w", "j" ,"c", "e" print(tuplex) #tuples are immutable, so you can not remove elements #using merge of tuples with the + operator you can remove an item and it will create a new tuple tuplex = tuplex[:2] + tuplex[3:] print(tuplex) #converting the tuple to list listx = list(tuplex) #use different ways to remove an item of the list listx.remove("e") #converting the tuple to list tuplex = tuple(listx) print(tuplex)
原文地址:https://www.cnblogs.com/sea-stream/p/9949512.html
时间: 2024-10-22 11:14:14