首页 > 编程 > Python > 正文

Python实现去除列表中重复元素的方法小结【4种方法】

2020-01-04 15:20:12
字体:
来源:转载
供稿:网友

本文实例讲述了Python实现去除列表中重复元素的方法。分享给大家供大家参考,具体如下:

这里一共使用了四种方法来去除列表中的重复元素,下面是具体实现:

#!usr/bin/env python#encoding:utf-8'''__Author__:沂水寒城功能:去除列表中的重复元素'''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_listdef 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_listif __name__ == '__main__':  one_list=[56,7,4,23,56,9,0,56,12,3,56,34,45,5,6,56]  print "VEVB武林网测试结果:"  print func1(one_list)  print func2(one_list)  print func3(one_list)  print func4(one_list)

结果如下:

VEVB武林网测试结果:
[0, 34, 3, 4, 5, 6, 7, 9, 12, 45, 23, 56]
[0, 34, 3, 4, 5, 6, 7, 9, 12, 45, 23, 56]
[56, 7, 4, 23, 9, 0, 12, 3, 34, 45, 5, 6]
[0, 3, 4, 5, 6, 7, 9, 12, 23, 34, 45, 56]

运行结果截图:

Python,去除,列表,重复元素

 

希望本文所述对大家Python程序设计有所帮助。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表