Skip to content
On this page

difference

返回两个列表的差集。

python
from usepy import difference

参数

  • lst1: 第一个列表
  • lst2: 第二个列表

例子

python
>>> difference([1, 2, 3], [2, 3, 4])
[1]

Released under the MIT License.