本文介绍了筛选清单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想过滤列表中重复的元素例如
I want to filter repeated elements in my listfor instance
foo = ['a','b','c','a','b','d','a','d']
我只对以下内容感兴趣:
I am only interested with:
['a','b','c','d']
实现此目标的有效方法是什么?干杯
What would be the efficient way to do achieve this ?Cheers
推荐答案
将foo转换为设置(如果您不关心元素顺序).
Cast foo to a set, if you don't care about element order.
这篇关于筛选清单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!