python 中的discard()
函数有助于在元素存在的情况下从集合中移除或丢弃指定的元素。
**s.discard(element)** #where element may be a integer,string etc.
discard()
函数接受一个参数。此方法类似于remove()
方法,不同之处在于,如果给定元素不在集合中,discard()
方法会引发错误,但remove()
不会。
参数 | 描述 | 必需/可选 |
---|---|---|
元素 | 要搜索和移除的项目 | 需要 |
discard()
方法不返回任何内容。它只是通过从集合中移除指定的元素来更新集合。
discard()
方法的示例discard()
在 Python 中是如何工作的? alphabets = {'a', 'b', 'c', 'd'}
alphabets .discard(c)
print('Alphabets = ', alphabets )
numbers.discard(e)
print('Alphabets = ', alphabets )
输出:
Alphabets = {'a', 'b', 'd'}
Alphabets = {'a', 'b', 'd'}
alphabets = {'a', 'b', 'c', 'd'}
#Returns none
print(alphabets .discard(c))
print('Alphabets = ', alphabets )
输出:
None
Alphabets = {'a', 'b', 'd'}
网站名称:创新互联Python教程:Pythondiscard()
网址分享:http://www.mswzjz.cn/qtweb/news33/352133.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能