在Python中,可以使用內置的集合(set)類型來求兩個集合的交集。具體來說,可以使用 intersection
方法或者 &
運算符來實現這一目標。下面是兩種方法的示例:
# 使用 intersection 方法
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
intersection_set = set1.intersection(set2)
print(intersection_set) # 輸出: {3, 4}
# 使用 & 運算符
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
intersection_set = set1 & set2
print(intersection_set) # 輸出: {3, 4}
在這兩個示例中,我們首先定義了兩個集合 set1
和 set2
,然后使用 intersection
方法或 &
運算符來求它們的交集。最后,我們打印出交集,得到結果 {3, 4}
。