文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python中set集合常用方法

2023-01-31 05:59

关注

今天开始学习python的集合相关方法的使用:

#集合的定义:集合是无序的,不重复的数据集合

set={"123","456","11"}

#add:向集合中填加元素

Add an element to a set.
set.add(563)
print(set)

#Clear:清除集合中的元素

Remove all elements from this set.

set.clear()
print(set)返回空

#Copy:复制一个集合并赋值给一个新的集合

set3=set2.copy()

 

#difference():打印set中和set2不一样的元素

set3=set.difference(set2)
print(set3)

#different_update():把集合set中和set2不一样的元素取出来并且更新到set里面

Remove all elements of another set from this set.
set.difference_update(set2)
print(set)

#discard():如果一个元素属于该集合则删除,如果不属于该集合则什么也不做

Remove an element from a set if it is a member.
If the element is not a member, do nothing.
set.discard("1234")
print(set)
Remove an element from a set; it must be a member.
If the element is not a member, raise a KeyError.
set.remove("123")
print(set)

#pop():随机删除集合里面的元素,如果集合为空则报错,建议使用discard

Remove and return an arbitrary set element.
Raises KeyError if the set is empty.
set.pop("11")
print(set)

# Intersection:将set和set2两个集合的交集放入集合3并打印。

Return the intersection of two sets as a new set.
set3=set.intersection(set2)
print(set3)

 #intersection_update():将set和set2两个集合的交集更新到set中。

Update a set with the intersection of itself and another.
set.intersection_update(set2)
print(set)

 #isdisjoint():如果两个集合没有交集则返回true,反之如果有交集则返回false。

Return True if two sets have a null intersection
set3=.isdisjoint(set2)
(set3)

#issubset():set是否是set2的子集,如果是返回True,否则返回false

Report whether another set contains this set.
set3=set.issubset(set2)
print(set3)

#issuperset():set是否是set2的父集,如果是则返回True,如果不是则返回False.

Report whether this set contains another set.
set3=set.issuperset(set2)
print(set3)

 #symmetric_difference():将两个集合中不是交集的部分取出来

Return the symmetric difference of two sets as a new set.
set3=set.symmetric_difference(set2)
print(set3)

#symmetric_difference_update():取出set集合set2集合不是交集的部分,并且把值更新到set集合。

Update a set with the symmetric difference of itself and another.
.symmetric_difference_update(set2)
()

#union():取两个集合的合集,把所有元素汇集在一起形成新的集合,但是元素不重复

Return the union of sets as a new set
=set.union(set2)
(set)

#update():把一个集合和另一个集合的合集更新到当前集合中,当前集合之前的数据被覆盖。

 Update a set with the union of itself and others.
.update(set2)
()

上面就是所有关于集合的方法了,终于听完课以后自己把所有的方法都实验完了。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯