是的,在Python中,set可以進行交集運算。可以使用&
運算符或者intersection()
方法來計算兩個集合的交集。
例如:
set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}
# 使用 & 運算符計算交集
intersection = set1 & set2
print(intersection) # 輸出 {4, 5}
# 使用 intersection() 方法計算交集
intersection = set1.intersection(set2)
print(intersection) # 輸出 {4, 5}