基於python的集合運算

瀟灑坤發表於2018-10-02

兩個集合的運算有:交集、並集、差集
分別對應的操作符:& | ^

test_list1 = [1, 2, 3 , 4]
test_list2 = [3, 4, 5, 7]
test_set1 = set(test_list1)
test_set2 = set(test_list2)
print(test_set1 & test_set2)
print(test_set1 | test_set2)
print(test_set1 ^ test_set2)

上面一段程式碼的執行結果如下:

{3, 4}
{1, 2, 3, 4, 5, 7}
{1, 2, 5, 7}


相關文章