pop()方法用于随机移除一个元素
例如:set.pop()
随机移除一个元素:
fruits = {'apple','banana','cherry'}
x = fruits.pop()
print(x)
print(fruits)
输出为
banana
{'cherry', 'apple'