簡體   English   中英

在python中將兩個列表分組

[英]Grouping two lists in python

我有兩個列表,希望根據列表的第一個元素進行分組。

list1 = [['1','abc','zef'],['2','qwerty','opo'],['3','lol','pop']]

list2 = [['1','rofl','pole'],['2','sole','pop'],['3','lmao','wtf']]

這里,列表內列表中的第一個元素是“ 1”,“ 2”和“ 3”。

我希望我的最終名單像:-

Final_List = [['1', 'abc', 'zef', 'rofl', 'pole'], ['3', 'lol', 'pop', 'lmao', 'wtf'], ['2', 'qwerty', 'opo', 'sole', 'pop']]

我已經嘗試使用下面的代碼。

#!/usr/bin/python
list1 = [['1','abc','zef'],['2','qwerty','opo'],['3','lol','pop']]
list2 = [['1','rofl','pole'],['2','sole','pop'],['3','lmao','wtf']]
d = {}
for i in list1:
    d[i[0]] = i[1:]
for i in list2:
    d[i[0]].extend(i[1:])
Final_List = []
for key, value in d.iteritems():
    value.insert(0,key)
   Final_List.append(value)

這段代碼有效,但是我想知道是否有一種簡單而干凈的方法

有什么幫助嗎?

我寫的就像你寫的一樣,做了一些修改,像這樣

  1. 准備一個字典,其中從第二個位置開始收集所有與第一個元素相對應的元素。

     d = {} for items in (list1, list2): for item in items: d.setdefault(item[0], [item[0]]).extend(item[1:]) 
  2. 然后從字典中獲取所有值(謝謝@jamylak):-)

     print(d.values()) 

產量

[['3', 'lol', 'pop', 'lmao', 'wtf'],
 ['1', 'abc', 'zef', 'rofl', 'pole'],
 ['2', 'qwerty', 'opo', 'sole', 'pop']]

如果Final_List內部列表中的項目順序不重要,則可以使用它,

[list(set(sum(itm, []))) for itm in zip(list1, list2)]

是的,具有列表理解和枚舉

list1 = [['1','abc','zef'],['2','qwerty','opo'],['3','lol','pop']]

list2 = [['1','rofl','pole'],['2','sole','pop'],['3','lmao','wtf']]

print [set(v + list2[k]) for k,v in enumerate(list1)]

[['1', 'abc', 'zef', 'rofl', 'pole'], ['2', 'qwerty', 'opo', 'sole', 'pop'], ['3', 'lol', 'pop', 'lmao', 'wtf']]

編輯

與索引關系

list1 = [['1','abc','zef'],['2','qwerty','opo'],['3','lol','pop']]
list2 = [['1','rofl','pole'],['3','lmao','wtf'],['2','sole','pop']]

d1 = {a[0]:a for a in list1}
d2 = {a[0]:a for a in list2}
print [set(v + d2[k]) for k, v in d1.items()]

您的代碼似乎正確。 只需修改以下部分:

Final_List = []    
for key in d:
    L = [key] + [x for x in d[key]]
    Final_List.append(L)

使用默認的dict和list理解,您可以縮短代碼

from collections import defaultdict

list1 = [['1','abc','zef'],['2','qwerty','opo'],['3','lol','pop']]
list2 = [['1','rofl','pole'],['2','sole','pop'],['3','lmao','wtf']]

d = defaultdict(list)

for i in list1 + list2:
    d[i[0]].extend(i[1:])

Final_List = [[key] + value for key, value in d.iteritems()]

print Final_List
list3 = []
for i in xrange(0,max(len(list1[0]), len(list2[0]))):
    list3.append(list(list1[i]))
    list3[i].extend(x for x in list2[i] if x not in list3[i])

使用xrange,您只能在列表中迭代一次。

有點功能風格:

import operator, itertools
from pprint import pprint
one = [['1','abc','zef'],['2','qwerty','opo'],['3','lol','pop']]
two = [['1','rofl','pole'],['2','sole','pop'],['3','lmao','wtf']]

一些幫助者:

zero = operator.itemgetter(0)
all_but_the_first = operator.itemgetter(slice(1, None))
data = (one, two)

def foo(group):
    # group is (key, iterator) from itertools.groupby
    key = group[0]
    lists = group[1]
    result = list(key)
    for item in lists:
        result.extend(all_but_the_first(item))
    return result

處理數據的功能

def process(data, func = foo):
    # concatenate all the sublists
    new = itertools.chain(*data)
    # group by item zero
    three = sorted(new, key = zero)
    groups = itertools.groupby(three, zero)
    # iterator that builds the new lists
    return itertools.imap(foo, groups)

用法

>>> pprint(list(process(data)))

[['1', 'abc', 'zef', 'rofl', 'pole'],
 ['2', 'qwerty', 'opo', 'sole', 'pop'],
 ['3', 'lol', 'pop', 'lmao', 'wtf']]
>>>
>>> for thing in process(data):
    print thing

['1', 'abc', 'zef', 'rofl', 'pole']
['2', 'qwerty', 'opo', 'sole', 'pop']
['3', 'lol', 'pop', 'lmao', 'wtf']
>>>

list1 = [['1','abc','zef'],['2','qwerty','opo'],['3','lol','pop']]

list2 = [['1','rofl','pole'],['2','sole','pop'],['3','lmao','wtf']]

Final_List = []

對於范圍內的我(0,len(list1)):

    Final_List.append(list1[i] + list2[i])

    del Final_List[i][3]

打印Final_List

產量

[['1','abc','zef','rofl','pole'],['2','qwerty','opo','sole','pop'],['3', 'lol','pop','lmao','wtf']]

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM