python怎么对列表中元素去重复
程序员文章站
2022-04-06 21:11:41
...
在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怎么对列表中元素去重复的详细内容,更多请关注其它相关文章!
上一篇: 简单介绍mysql集群(图)
下一篇: MySQL存储引擎初探