上一篇
python如何列表去重复数据
- 行业动态
- 2024-04-14
- 2
在Python中,有多种方法可以去除列表中的重复数据,以下是一些常见的方法:
1、使用集合(set):集合是一个无序的不重复元素序列,通过将列表转换为集合,然后再转换回列表,可以实现去重,但是这种方法会丢失原始列表的顺序。
def remove_duplicates_with_set(lst): return list(set(lst)) my_list = [1, 2, 2, 3, 4, 4, 5] new_list = remove_duplicates_with_set(my_list) print(new_list) # 输出:[1, 2, 3, 4, 5]
2、使用列表推导式和if not in语句:这种方法会保留原始列表的顺序。
def remove_duplicates_with_list_comprehension(lst): return [x for i, x in enumerate(lst) if x not in lst[:i]] my_list = [1, 2, 2, 3, 4, 4, 5] new_list = remove_duplicates_with_list_comprehension(my_list) print(new_list) # 输出:[1, 2, 3, 4, 5]
3、使用collections模块的OrderedDict类:这种方法会保留原始列表的顺序。
from collections import OrderedDict def remove_duplicates_with_ordered_dict(lst): return list(OrderedDict.fromkeys(lst)) my_list = [1, 2, 2, 3, 4, 4, 5] new_list = remove_duplicates_with_ordered_dict(my_list) print(new_list) # 输出:[1, 2, 3, 4, 5]
以上就是在Python中去除列表重复数据的几种方法。
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/283272.html