python中的pop()函数

pop()方法用于随机移除一个元素
例如:set.pop()
随机移除一个元素:

fruits = {'apple','banana','cherry'}
x = fruits.pop()
print(x)
print(fruits)

输出为

banana
{'cherry', 'apple'

你可能感兴趣的:(python)