在Python中,可以使用set()
函數或者集合對象的intersection()
方法來計算兩個集合的交集。
以下是使用set()
函數的示例:
# 定義兩個集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
# 計算交集
intersection_set = set1 & set2
print(intersection_set) # 輸出: {3, 4}
以下是使用intersection()
方法的示例:
# 定義兩個集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
# 計算交集
intersection_set = set1.intersection(set2)
print(intersection_set) # 輸出: {3, 4}
還可以使用intersection()
方法同時計算多個集合的交集:
# 定義三個集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
set3 = {3, 4, 7, 8}
# 計算交集
intersection_set = set1.intersection(set2, set3)
print(intersection_set) # 輸出: {3, 4}