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

python3笔记-列表

时间:2018-02-27 21:20:04      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:blog   style   去重   pen   数据   python   gpo   set   nbsp   

列表去重的两种方式:

 1 # 创建列表放数据
 2 a =[1,2,1,4,2]
 3 b=[1,3,4,3,1,3]
 4 
 5 d=[]
 6 for i in a:
 7     if i not in d:
 8         d.append(i)
 9 print(d)
10 
11 #set 去重
12 b=set(b)
13 print(b)

 

python3笔记-列表

标签:blog   style   去重   pen   数据   python   gpo   set   nbsp   

原文地址:https://www.cnblogs.com/lily1989/p/8480308.html

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