从列表列表中删除重复项?

发布于 2024-11-27 07:42:38 字数 496 浏览 1 评论 0原文

可能的重复:
Python:从列表列表中删除重复项

什么是从列表列表中删除重复项的最佳方法?

我试图使用这样的集合:

L1 = [['fox', 'dog'],['bat', 'rat'],['fox', 'dog']]  
L1 = list(set(L1))

不幸的是,我得到一个 TypeError: unhashable type: 'list'。

在我的列表中出现了两次 ['fox', 'dog']。我希望 L1 删除重复项,如下所示:

L1 = [['fox', 'dog'],['bat', 'rat']]

Possible Duplicate:
Python: removing duplicates from a list of lists

What is the best way to remove duplicates from a list of lists?

I was trying to use set like this:

L1 = [['fox', 'dog'],['bat', 'rat'],['fox', 'dog']]  
L1 = list(set(L1))

Unfortunately, I get a TypeError: unhashable type: 'list'.

In my list there are two occurrences of ['fox', 'dog']. I want L1 to remove the duplicate and look like this:

L1 = [['fox', 'dog'],['bat', 'rat']]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我一向站在原地 2024-12-04 07:42:38

如果将内部列表转换为元组,您将能够成功地将它们添加到集合中,例如:

>>> set(map(tuple, L1))
set([('fox', 'dog'), ('bat', 'rat')])

如果需要,您可以返回到列表列表,如下所示:

>>> map(list, set(map(tuple, L1)))
[['fox', 'dog'], ['bat', 'rat']]

If you convert the inner lists to tuples you will be able to add them to a set successfully, for example:

>>> set(map(tuple, L1))
set([('fox', 'dog'), ('bat', 'rat')])

If necessary, you can get back to lists of lists like this:

>>> map(list, set(map(tuple, L1)))
[['fox', 'dog'], ['bat', 'rat']]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文