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

python中如何去除列表中重复元素?

时间:2017-12-22 23:57:34      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:gpo   函数   style   如何   bsp   for   blog   log   div   

方法一:

         用内置函数set:

    

1 list1 = [1, 2, 3, 3, 4, 4, 5, 6, 6, 6, 7, 8, 9]
2 list2 = list(set(list1))
3 print(list2)

 

方法二:

      遍历去除重复

1 list1 = [1, 2, 3, 3, 4, 4, 5, 6, 6, 6, 7, 8, 9]
2 list2=[]
3 for i in list1:
4     if not i in list2:
5         list2.append(i)
6 print(list2)

 列表推导式

1 list1 = [1, 2, 3, 3, 4, 4, 5, 6, 6, 6, 7, 8, 9]
2 list2=[]
3 [list2.append(i) for i in list1 if not i in list2]

 

python中如何去除列表中重复元素?

标签:gpo   函数   style   如何   bsp   for   blog   log   div   

原文地址:http://www.cnblogs.com/zhangshuyang/p/8087895.html

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