小码哥的IT人生

Python 集合 intersection() 方法

Python基础 2022-06-06 16:13:19小码哥的IT人生shichen

Python 集合 intersection() 方法

实例

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

x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
z = x.intersection(y)
print(z)

完整实例:

x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
z = x.intersection(y)
print(z)

定义和用法

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

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

语法

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

参数值

参数 描述
set1 必需。要在其中检索相同项目的集合。
set2

可选。其他需要在其中检索相同项目的集合。

您可以比较任意多的集合。

集合之间由逗号分隔。

更多实例

示例代码:

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

x = {"a", "b", "c"}
y = {"c", "d", "e"}
z = {"f", "g", "c"}
result = x.intersection(y, z)
print(result)

完整实例:

x = {"a", "b", "c"}
y = {"c", "d", "e"}
z = {"f", "g", "c"}
result = x.intersection(y, z)
print(result)

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024