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

python 日常已记 列表去重

时间:2018-08-07 00:34:49      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:append   python   []   去重   pytho   pen   lis   for   end   

常规列表去重的两种方法

第一种:

list=[1,2,2,2,2,3,4,5,5,6,7,8,8,9]

list2=[]

for a in list:

  if a not in list2:

    list2.append(a)

print (list2)

第二种:

list=[1,2,2,2,2,3,4,5,5,6,7,8,8,9]

list=list(set(list))

print (list3)

python 日常已记 列表去重

标签:append   python   []   去重   pytho   pen   lis   for   end   

原文地址:https://www.cnblogs.com/mahaining/p/9434184.html

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