例如:
返回一个包含同时存在于x
和y
中的元素的集合:
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
z = x.intersection(y)
print(z)
1、定义和用法
intersection()
方法用于返回两个或更多集合中都包含的元素,即交集。返回的集合仅包含两个集合中都存在的元素,或者如果使用两个以上的集合进行比较,则包含所有集合中的元素。
2、调用语法
set.intersection(set1, set2 ... etc)
3、参数说明
参数 | 描述 |
set1 | 必需的参数,要查找相同元素的集合 |
set2 | 可选的。 其他要查找相同元素的集合,可以多个,多个使用逗号 , 隔开。 |
4、使用示例
例如:
比较3个集合,返回一个集合,其中包含所有3个集合中存在的元素:
x = {"a", "b", "c"}
y = {"c", "d", "e"}
z = {"f", "g", "c"}
result = x.intersection(y, z)
print(result)