欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

python列表如何去重?

程序员文章站 2022-03-30 16:56:47
...
python列表如何去重?下面本篇文章就来给大家介绍一下python列表去重的方法,希望对你们有所帮助。(推荐学习:python视频教程

python列表如何去重?

python列表去重的方法:

1、用循环查找的方式

li = [1,2,3,3,4,2,3,4,5,6,1]
news_li = []
for i in li:
    if i not in news_li:
        news_li.append(i)
print (news_li)

输出:

[1, 2, 3, 4, 5, 6]

2、用集合的特性set()

li = [1,4,3,3,4,2,3,4,5,6,1]
new_li = list(set(li))
print (new_li)

输出:

[1, 2, 3, 4, 5, 6]

3、使用itertools模块的grouby方法

import itertools
li = [1,4,3,3,4,2,3,4,5,6,1]
li.sort() #排序
it = itertools.groupby(li)
for k, g in it:
    print (k)

输出:

1
2
3
4
5
6

4、使用keys()方式

li = [1,0,3,7,7,5]
formatli = list({}.fromkeys(li).keys())
print (formatli)

输出:

[1, 0, 3, 7, 5]

更多python相关技术知识,请访问python入门教程栏目学习!

以上就是python列表如何去重?的详细内容,更多请关注其它相关文章!