Python 集合 intersection() 方法

实例

返回包含存在于集合 x 和集合 y 中的项目的集合:

  1. x = {"apple", "banana", "cherry"}
  2. y = {"google", "microsoft", "apple"}
  3.  
  4. z = x.intersection(y)
  5.  
  6. print(z)

定义和用法

intersection() 方法返回包含两个或更多集合之间相似性的集合。

含义:返回的集合仅包含两个集合中都存在的项目,或者如果使用两个以上的集合进行比较,则在所有集合中都存在。

语法

  1. set.intersection(set1, set2 ... etc)

参数值

参数 描述
set1 必需。要在其中检索相同项目的集合。
set2 可选。其他需要在其中检索相同项目的集合。 您可以比较任意多的集合。 集合之间由逗号分隔。

更多实例

实例

对比 3 个集合,并返回存在于所有 3 个集合中的项目:

  1. x = {"a", "b", "c"}
  2. y = {"c", "d", "e"}
  3. z = {"f", "g", "c"}
  4.  
  5. result = x.intersection(y, z)
  6.  
  7. print(result)