【Python】集合的数学操作:求 两个集合的 交集、并集、差集、对称差集
在前面示例代码# 昵 称:追光者♂# 时 间: 2022/5/8/0008 16:36# 集合的数学操作# (1)交集s1 = {10, 20, 30, 40}s2 = {20, 30, 40, 50, 60}print(s1.intersection(s2))print(s1 & s2) # intersection与&等价,交集操作# (2)并集print(s1.union(s2)) # 并集操作中 多个重复的结果只会包含一个print(s1 | s2