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