在Python中,可以使用集合(set)數(shù)據(jù)類型來處理交集。集合是一個無序的、不重復(fù)的元素序列。要計算兩個集合的交集,可以使用 intersection()
方法或者 &
運算符。
以下是一些示例:
# 定義兩個集合
set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}
# 使用 intersection() 方法計算交集
intersection_result = set1.intersection(set2)
print("Intersection using intersection() method:", intersection_result)
# 使用 & 運算符計算交集
intersection_result2 = set1 & set2
print("Intersection using & operator:", intersection_result2)
輸出結(jié)果:
Intersection using intersection() method: {4, 5}
Intersection using & operator: {4, 5}
在這個例子中,我們定義了兩個集合 set1
和 set2
。然后,我們使用 intersection()
方法和 &
運算符分別計算這兩個集合的交集。最后,我們打印出計算結(jié)果。