两个集合的运算有:交集、并集、差集
分别对应的操作符:& | ^
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}