码迷,mamicode.com
首页 > 编程语言 > 详细

Python对list去重的各种方法

时间:2018-12-10 19:14:54      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:and   不能   list   code   ofo   索引   remove   ids   排序   

参考原文:https://www.the5fire.com/python-remove-duplicates-in-list.html

需求:去list进行去重,去重后保证顺序不变

方法1:for循环

ids = [1, 2, 3, 3, 4, 2, 3, 4, 5, 6, 1]
new_ids = []

for id in ids:
    if id not in new_ids:
        new_ids.append(id)

print("new_ids==>", new_ids)

方法2:set

ids = [1,4,3,3,4,2,3,4,5,6,1]
new_ids = list(set(ids))

print(new_ids)

测试发现去重后不能保证原来的顺序

方法3:按照索引再次排序

ids = [1, 4, 3, 3, 4, 2, 3, 4, 5, 6, 1]
new_ids = list(set(ids))
new_ids.sort(key=ids.index)

print(new_ids)

方法4:用reduce

ids = [1,4,3,3,4,2,3,4,5,6,1]
func = lambda x,y:x if y in x else x + [y]
reduce(func, [[], ] + ids)
[1, 4, 3, 2, 5, 6]

其中的 lambda x,y:x if y in x else x + [y] 等价于 lambda x,y: y in x and x or x+[y] 。
思路其实就是先把ids变为[[], 1,4,3,......] ,然后在利用reduce的特性

reduce()函数介绍

Python对list去重的各种方法

标签:and   不能   list   code   ofo   索引   remove   ids   排序   

原文地址:http://blog.51cto.com/dzm911/2328543

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!