目标是计算两个列表 x 和 y 之间的差异,从而产生一个新列表,其中包含 x 中不存在的元素y.
要保留 x 的原始顺序,请使用列表推导式检查哪些元素不在 y 中:
<code class="python">[item for item in x if item not in y]</code>
如果结果列表中元素的顺序不重要,可以使用设置差异:
<code class="python">list(set(x) - set(y))</code>
要启用列表减法的中缀 x - y 语法,可以创建一个自定义类来重写 __sub__ 方法以实现所需的行为:
<code class="python">class MyList(list): def __sub__(self, other): return self.__class__(*[item for item in self if item not in other])</code>
使用这个类,减法可以执行如下:
<code class="python">x = MyList(1, 2, 3, 4) y = MyList(2, 5, 2) z = x - y </code>
以上是如何在 Python 中计算两个列表之间的差异?的详细内容。更多信息请关注PHP中文网其他相关文章!