温馨提示×

python set操作如何进行交集运算

小樊
81
2024-11-25 18:53:52
栏目: 编程语言

在Python中,可以使用&运算符或intersection()方法对两个集合进行交集操作。以下是两种方法的示例:

方法1:使用&运算符

set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}

intersection = set1 & set2
print(intersection)  # 输出:{4, 5}

方法2:使用intersection()方法

set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}

intersection = set1.intersection(set2)
print(intersection)  # 输出:{4, 5}

这两种方法都可以得到两个集合的交集。

0