python四种方法实现去除列表中的重复元素
Posted 让学习成为一种生活方式
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python四种方法实现去除列表中的重复元素相关的知识,希望对你有一定的参考价值。
转载:https://blog.csdn.net/together_cz/article/details/76201975
- def func1(one_list):
- ‘‘‘‘‘
- 使用集合,个人最常用
- ‘‘‘
- return list(set(one_list))
- def func2(one_list):
- ‘‘‘‘‘
- 使用字典的方式
- ‘‘‘
- return {}.fromkeys(one_list).keys()
- def func3(one_list):
- ‘‘‘‘‘
- 使用列表推导的方式
- ‘‘‘
- temp_list=[]
- for one in one_list:
- if one not in temp_list:
- temp_list.append(one)
- return temp_list
- def func4(one_list):
- ‘‘‘‘‘
- 使用排序的方法
- ‘‘‘
- result_list=[]
- temp_list=sorted(one_list)
- i=0
- while i<len(temp_list):
- if temp_list[i] not in result_list:
- result_list.append(temp_list[i])
- else:
- i+=1
- return result_list
- if __name__ == ‘__main__‘:
- one_list=[56,7,4,23,56,9,0,56,12,3,56,34,45,5,6,56]
- print func1(one_list)
- print func2(one_list)
- print func3(one_list)
- print func4(one_list)
以上是关于python四种方法实现去除列表中的重复元素的主要内容,如果未能解决你的问题,请参考以下文章