举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > python 集合 pop Python3 集合 pop() 方法

python 集合 pop Python3 集合 pop() 方法

2023-05-03 12:18 Python3教程

python 集合 pop Python3 集合 pop() 方法

python 集合 pop

Python 集合的 pop 方法用于移除集合中的一个元素,并且返回该元素的值。它不接受任何参数,如果集合中没有元素,会引发 KeyError 异常。

# 定义一个集合
s = {'apple', 'banana', 'cherry'}
 
# 移除一个元素并返回它的值
x = s.pop()
 
print(x) # apple 
print(s) # {'banana', 'cherry'} 

Python3 集合 pop() 方法

Python3 列表 Python 集合

描述

pop() 方法用于随机移除一个元素。

语法

pop() 方法语法:

set.pop()

参数

返回值

返回移除的元素。

实例

随机移除一个元素:

实例 1

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

输出结果为:

{"apple", "banana"}

输出返回值:

实例 2

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

输出结果为:

banana

Python3 列表 Python 集合


阅读全文
以上是编程学为你收集整理的python 集合 pop Python3 集合 pop() 方法全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部