python中列表去重的方式有哪些?
851次观看
标签:
方式
有哪些
列表
老师回答
1、列表遍历法
alist = [1, 2, 2, 4, 4, 6, 7]
b = list()
for i in alist:
if i not in b:
b.append(i)
print(b)
2、集合set去重法
处理起来比较简单,但结果不会保留之前的顺序。
ids = [1,4,3,3,4,2,3,4,5,6,1]
ids = list(set(ids))
3、字典中fromkeys()方法
>>> L = [3, 1, 2, 1, 3, 4]
>>> T = {}.fromkeys(L).keys()
>>> T
[1, 2, 3, 4]
>>> T.sort(key=L.index)
>>> T
[3, 1, 2, 4]
4、列表推导式法
>>> lst1 = [2, 1, 3, 4, 1]
>>> temp = []
>>> [temp.append(i) for i in lst1 if not i in temp]
[None, None, None, None]
>>> print(temp)
[2, 1, 3, 4]
5、使用sort函数或sorted函数
>>> L = [3, 1, 2, 1, 3, 4]
>>> T = sorted(set(L), key=L.index)
>>> T
[3, 1, 2, 4]
©本文版权归环球青藤所有,任何形式转载请联系我们。
免费直播
精选课程
相关推荐