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

python 删除列表中重复的数字

时间:2019-02-13 10:46:23      阅读:499      评论:0      收藏:0      [点我收藏+]

标签:遍历   创建   方法   lists   sts   python   nbsp   color   pytho   

方法一:将列表转化成集合,再转化成列表

Li = [1,1,2,2,3,3,4,4]
print(list(set(Li)))

方法二:创建一个新列表,遍历列表是否重复,不重复插入新列表

def UniqueInt(Lists):
    temp_li = []
    for i in Lists:
        if i not in temp_li:
            temp_li.append(i)
    return temp_li

Li = [1,1,2,2,3,3,4,4]
print(UniqueInt(Li))

 

python 删除列表中重复的数字

标签:遍历   创建   方法   lists   sts   python   nbsp   color   pytho   

原文地址:https://www.cnblogs.com/xiaopeng4Python/p/10368496.html

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