使用 pop()方法删除集合中的最后一项使用 pop()方法删除集合中的最后一项thisset = {"apple", "banana", "cherry"} x = thisset.pop() print(x) #removed item print(thisset) #the set after removal