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

python 列表去重

时间:2019-08-24 18:37:00      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:列表   list   lis   not   set   append   int   python   for   


list=[1, 2, 3, 4,‘a‘,‘b‘,‘c‘,‘a‘,2, 3, 2,"b",‘c‘,‘d‘,‘e‘,‘f‘,‘d‘]

# s = set(list)#用set方法
# print(s)
s =[]
for i in list: #列表去重
if i not in s:
s.append(i)
list = s
print(list)

python 列表去重

标签:列表   list   lis   not   set   append   int   python   for   

原文地址:https://www.cnblogs.com/niucunguo/p/11405389.html

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