当前位置:首页 > 行业动态 > 正文

python中的交集符号

Python中的交集符号是 &,用于表示两个集合的交集。A & B 表示 集合A和集合B的交集。

在Python中,求两个集合的交集可以使用&符号或者intersection()方法,以下是详细的解释和示例代码:

python中的交集符号  第1张

1、使用&符号求交集:

set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
intersection_set = set1 & set2
print(intersection_set)

输出结果:

{3, 4}

2、使用intersection()方法求交集:

set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
intersection_set = set1.intersection(set2)
print(intersection_set)

输出结果:

{3, 4}

在Python中,可以使用&符号或intersection()方法求两个集合的交集。

0