Intersection() 函数 Python
在本文中,我们将学习如何针对给定的任何集合执行 intersection() 函数。根据数学,交集表示找出两个集合中的交集元素。
语法
<set name>.intersection(<set a1> <set a2> ……..)
返回值
作为参数传递的集合中的公共元素。
示例
set_1 = {'t','u','t','o','r','i','a','l'} set_2 = {'p','o','i','n','t'} set_3 = {'t','u','t'} #intersection of two sets print("set1 intersection set2 : ", set_1.intersection(set_2)) # intersection of three sets print("set1 intersection set2 intersection set3 :", set_1.intersection(set_2,set_3))
输出
set1 intersection set2 : {'i', 'o', 't'} set1 intersection set2 intersection set3 : {'t'}
说明
在这里,通过解释器进行搜索以找出公共元素,并将这些元素作为集合返回到各自的引用。
结论
在本文中,我们学习了如何在 Python 3.x 或更早版本中实现和使用交集函数。
广告