在Python中,可以使用集合的intersection()方法來實現兩個集合的交集。示例如下:
set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}
intersection_set = set1.intersection(set2)
print(intersection_set)
輸出結果為:
{4, 5}
另外,也可以使用&操作符來實現兩個集合的交集,示例如下:
intersection_set = set1 & set2
print(intersection_set)
輸出結果仍然為:
{4, 5}