我试图找出两个列表之间的区别。基本上,我想知道列表 1 中没有列表 2 的所有内容。解释它的最好方法是举个例子:
List1 = [a, a, b, c, d, e]
List2 = [a, b, c, d]
In this example, I would like a function that would return [a, e]
当我在python中使用差异函数时,它只会返回“e”,而不是列表1中还有一个额外的“a”。当我在2个列表之间简单地使用XOR时,它也只返回“e”。