标签:python set csdn 学习 section style net tar tle
两个list如下:
a = [1,2,3]
b = [2,3]
想要的结果是[1]
list(set(b).difference(set(a))) # b中有而a中没有的
list(set(a).union(set(b)))
list(set(a).intersection(set(b)))
参考文档:
标签:python set csdn 学习 section style net tar tle
原文地址:https://www.cnblogs.com/kaerxifa/p/11747703.html