例如:
从集合中删除一个随机元素:
fruits = {"apple", "banana", "cherry"} fruits.pop() print(fruits)
1、定义和用法
pop()
方法从集合中删除随机项。
此方法返回删除的集合元素。
2、调用语法
set.pop()
3、参数说明
没有参数。
4、使用示例
例如:
返回删除的元素:
fruits = {"apple", "banana", "cherry"} x = fruits.pop() print(x)
注意:pop()
方法返回删除的元素。