在Python中,可以使用&
運算符或intersection()
方法對兩個集合進行交集運算。
例如,假設有兩個集合A和B:
A = {1, 2, 3, 4, 5}
B = {4, 5, 6, 7, 8}
使用&
運算符進行交集運算:
intersection = A & B
print(intersection) # 輸出:{4, 5}
使用intersection()
方法進行交集運算:
intersection = A.intersection(B)
print(intersection) # 輸出:{4, 5}
注意,交集運算的結果仍然是一個集合。