Pythonic way of removing reversed duplicates in list(删除列表中反向重复项的 Pythonic 方法)
问题描述
我有一个配对列表:
[0, 1], [0, 4], [1, 0], [1, 4], [4, 0], [4, 1]
我想删除所有重复的地方
and I want to remove any duplicates where
[a,b] == [b,a]
所以我们最终只有
[0, 1], [0, 4], [1, 4]
我可以做一个内在的 &外部循环检查反向对并附加到列表中,如果不是这种情况,但我确信有一种更 Pythonic 的方式来实现相同的结果.
I can do an inner & outer loop checking for the reverse pair and append to a list if that's not the case, but I'm sure there's a more Pythonic way of achieving the same results.
推荐答案
如果需要保留列表中元素的顺序的话,可以使用sorted
函数并使用 map
像这样:
If you need to preserve the order of the elements in the list then, you can use a the sorted
function and set comprehension with map
like this:
lst = [0, 1], [0, 4], [1, 0], [1, 4], [4, 0], [4, 1]
data = {tuple(item) for item in map(sorted, lst)}
# {(0, 1), (0, 4), (1, 4)}
或者干脆没有像这样的map
:
or simply without map
like this:
data = {tuple(sorted(item)) for item in lst}
另一种方法是使用 frozenset
,如 here 所示,但请注意,这仅在以下情况下有效您的列表中有不同的元素.因为像 set
一样,frozenset
总是包含唯一值.因此,您最终会在子列表中获得唯一值(丢失数据),这可能不是您想要的.
Another way is to use a frozenset
as shown here however note that this only work if you have distinct elements in your list. Because like set
, frozenset
always contains unique values. So you will end up with unique value in your sublist(lose data) which may not be what you want.
要输出一个列表,您总是可以使用 list(map(list, result))
,其中 result 是一组元组,仅在 Python-3.0 或更高版本中.
To output a list, you can always use list(map(list, result))
where result is a set of tuple only in Python-3.0 or newer.
这篇关于删除列表中反向重复项的 Pythonic 方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:删除列表中反向重复项的 Pythonic 方法
基础教程推荐
- Python 的 List 是如何实现的? 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01