📜  python 设置交集 - Python (1)

📅  最后修改于: 2023-12-03 15:04:18.705000             🧑  作者: Mango

Python设置交集

在Python中,可以使用交集(intersection)操作来找出两个或多个集合中共同包含的元素。这个操作可以使用&运算符,也可以使用intersection()方法。

使用&运算符
# 定义两个集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}

# 获取交集
intersection = set1 & set2

print(intersection)
# 输出:{3, 4}
使用intersection()方法
# 定义两个集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}

# 获取交集
intersection = set1.intersection(set2)

print(intersection)
# 输出:{3, 4}

注意,使用intersection()方法时,也可以同时传入多个集合来获取它们的交集。

# 定义三个集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
set3 = {4, 5, 6, 7}

# 获取交集
intersection = set1.intersection(set2, set3)

print(intersection)
# 输出:{4}

以上就是Python中设置交集的几种方法。