# 数组的交,并,差
listA = [1, 2, 3, 4, 5, 6]
listB = [5, 6, 7, 8, 9, 10]
# set()函数
# set()函数创建一个无序不重复的元素集
print(set(listA))
print(set([1, 2, 3, 4, 1, 2, 4, 2, 5, 2, 3, 5]))
# intersection
print([i for i in listA if i in listB])
print(list(set(listA) & set(listB)))
print(list(set(listA).intersection(set(listB))))
# union
print(list(set(listA) | set(listB)))
print(list(set(listA).union(set(listB))))
# difference
print([i for i in listA if i not in listB])
print(list(set(listB) - set(listA)))
print(list(set(listA).difference(set(listB))))
原文地址https://blog.csdn.net/bitcarmanlee/article/details/51622263?utm_source=app&app_version=4.5.0