当前位置:Gxlcms > Python > Python中set()函数详解

Python中set()函数详解

时间:2021-07-01 10:21:17 帮助过:10人阅读

set() 函数创建一个无序不重复元素集,可进行关系测试,删除重复数据,还可以计算交集、差集、并集等。希望能帮助到大家。

语法
set 语法:

class set([iterable])

参数说明:
iterable – 可迭代对象对象;

返回值
返回新的集合对象。

实例
以下实例展示了 set 的使用方法:

x = set('runoob')
y = set('google')print(x)print(y)

a = x & y         # 交集print(a)

b = x | y         # 并集print(b)

c = x - y         # 差集print(c)

输出:

{'n', 'r', 'u', 'b', 'o'}{'l', 'e', 'g', 'o'}{'o'}{'g', 'r', 'e', 'b', 'l', 'n', 'u', 'o'}{'n', 'r', 'u', 'b'}

相关推荐:

set()类的使用介绍

以上就是Python中set()函数详解的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行