python_获得列表中重复的项的索引

Posted 月河

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_获得列表中重复的项的索引相关的知识,希望对你有一定的参考价值。

a = [b,a, b, c, a, c,d]

b=[]
f=[]
for i in a:
    c=[]
    for item in enumerate(a):
        if item[1] ==i:
            c.append(item[0])
    b.append(c)
print(b)

for j in b:
    d=[]
    for k in j:
        d.append(a[k])
    f.append(d)
print(f)

得到

#b   [[0, 2], [1, 4], [0, 2], [3, 5], [1, 4], [3, 5], [6]]

#f   [[‘b‘, ‘b‘], [‘a‘, ‘a‘], [‘b‘, ‘b‘], [‘c‘, ‘c‘], [‘a‘, ‘a‘], [‘c‘, ‘c‘], [‘d‘]]

其中存在重复的小列表,可以对此列表去重

e=[] 
for i in b:
    if i not in e:
        e.append(i)
print(e) #[[0, 2], [1, 4], [3, 5], [6]]

 

以上是关于python_获得列表中重复的项的索引的主要内容,如果未能解决你的问题,请参考以下文章

Redis数据操作--列表

Redis数据操作之列表 | Redis

python列表

如何获得MFC列表框中选中的数据

Python:在浮动列表中查找最小项目的索引[重复]

使用 Python 列出列表中重复值的索引