当前位置:Gxlcms > Python > python怎么对列表中元素去重复

python怎么对列表中元素去重复

时间:2021-07-01 10:21:17 帮助过:80人阅读

在Python中对列表中元素去重复有以下几种方法:

方法一:

用内置函数set:(推荐:python中set是什么意思)

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

方法二:

遍历去除重复(推荐:在Python中遍历列表的方法有哪些)

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

列表推导式

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

更多Python相关技术文章,请访问Python教程栏目进行学习!

以上就是python怎么对列表中元素去重复的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行