代码笔记 IT小强xqitw.cn 2022年1月5日 18:50 摘要: Python 并集union, 交集intersection, 差集difference [TOCM] ### 并集union ```python a=[1,3,5] b=[1,2,3] # 并集 set(a) | set(b) # 或者 set(a).union(b) set([1, 2, 3, 5]) ``` ### 交集intersection ```python a=[1,3,5] b=[1,2,3] # 交集 set(a) & set(b) # 或者 set(a).intersection(b) set([1, 3]) ``` ### 差集difference ```python a=[1,3,5] b=[1,2,3] # 对称差集 set(a) ^ set(b) # 或者 set(a).symmetric_difference(b) set([2, 5]) ```