python SET集合

Posted yangjinquan

tags:

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

set 的简介
  python的set和其他语言类似, 是一个无序不重复元素集, 基本功能包括关系测试和消除重复元素. 集合对象还支持union(联 合), intersection(交), difference(差)和sysmmetric difference(对称差集)等数学运算.

 

创建集合:

p = [color, red,green, yellow, pink]
n = [orgenal, red,green, weight,]

p = set(p)
n = set(n)

集合常用操作及实例展示:

  可以使用dir(set)查看集合支持的操作方法

add 

p.add(xx)
print(p)#{‘yellow‘, ‘color‘, ‘pink‘, ‘green‘, ‘xx‘, ‘red‘}

copy

y = p.copy()
print(y)# {‘yellow‘, ‘color‘, ‘xx‘, ‘red‘, ‘green‘, ‘pink‘}

clear

y.clear()
print(y)#set()

 

  


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

python-列表list- 元组(tuple)- 集合(set)-字典(dict)-实例代码

Python集合(set)的操作方法汇总(约20种操作方法),并附示例代码

Python数据类型-集合(set)

python中的set集合

python-Day3-set 集合

python之集合set