Python判断多个列表中是否有重复的元素

直接使用将列表相加求出长度,然后再与去除重复元素的列表长度进行比较即可。

lst = list1 + list2 + list3
listLen = len(lst)  # 所有列表长度
onlyLen = len(set(lst))  # 没有重复元素列表长度

print("result:",listLen,onlyLen)

如果想找出相同的元素,则进行遍历即可。

alist = [x for x in list1 if x in list2] # list1 list2共同元素
blist = [y for y in list2 if y in list3] # list2 list3共同元素
clist = [z for z in list1 if z in list3] # list1 list3共同元素