标签:set集合 print 差集 集合 没有 pre 交集 int amp
a = [1,2,3,4,5,9]
b = [4,5,6,7,8]
c = set(a)
d = set(b)
print(c | d) #并集
print(c & d) #交集
print(c - d) #差集 在c有d没有
print(d - c) #差集 在d有c没有
print(d ^ c) #反向交集
print(c < d) #包含
print(d > c) #包含
标签:set集合 print 差集 集合 没有 pre 交集 int amp
原文地址:https://www.cnblogs.com/TKOPython/p/11631503.html