如何制作一组清单

编程入门 行业动态 更新时间:2024-10-28 14:27:37
本文介绍了如何制作一组清单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个这样的列表列表:

I have a list of lists like this:

i = [[1, 2, 3], [2, 4, 5], [1, 2, 3], [2, 4, 5]]

我想要一个包含独特"列表(基于其元素)的列表,如:

I would like to get a list containing "unique" lists (based on their elements) like:

o = [[1, 2, 3], [2, 4, 5]]

我不能使用set(),因为列表中有不可散列的元素.相反,我正在这样做:

I cannot use set() as there are non-hashable elements in the list. Instead, I am doing this:

o = [] for e in i: if e not in o: o.append(e)

有更简单的方法吗?

推荐答案

您可以创建一组元组,由于您提到的不可散列的元素,因此不可能有一组列表.

You can create a set of tuples, a set of lists will not be possible because of non hashable elements as you mentioned.

>>> l = [[1, 2, 3], [2, 4, 5], [1, 2, 3], [2, 4, 5]] >>> set(tuple(i) for i in l) {(1, 2, 3), (2, 4, 5)}

更多推荐

如何制作一组清单

本文发布于:2023-11-10 03:24:03,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1574224.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:清单

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!