python_集合_笔记

Posted 陈浩然MC

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_集合_笔记相关的知识,希望对你有一定的参考价值。

集合

特性:

a.确定性(元素必须可以hash)
b.互异性(去重)
c.无序性(集合中的元素没有先后之分)

集合关系测试

交集 & jihe1.intersection(jihe2)
差集 - jihe1.difference(jihe2)
并集 | jihe1.union(jihe2)
对称差集 ^ jihe1.symmetric_difference(jihe2)

包含关系

in:判断某元素是否在集合内
not in:==,!=,:判断两个集合是否相等

相交 set1.isdisjoint(set2)
包含 set2.issuperset(set2)
不相交 set3.issubset(set2)

示例

>>>iphone1 = {‘aaa‘, ‘nnn‘, ‘ccc‘}
>>>iphone2 = {‘ccc‘, ‘ddd‘}
>>>iphone1 in iphone2
False
>>>iphone1 not in iphone2
True
>>>iphone1 in iphone2
False
>>>iphone1 not in iphone2
True
>>>iphone1.isdisjoint(iphone2)
False
>>>iphone1.issuperset(iphone2)
False
>>>iphone1.issubset(iphone2)
False








以上是关于python_集合_笔记的主要内容,如果未能解决你的问题,请参考以下文章

Python学习笔记之字典和集合

python基础学习笔记——Python基础教程(第2版 修订版)第十章(充电时刻)

Python学习笔记__12.2章collections

玩蛇(Python)笔记之基础Part3

Python学习Day2笔记

python学习笔记——文件操作