我必须合并python字典列表。例如:
dicts[0] = {'a':1, 'b':2, 'c':3}
dicts[1] = {'a':1, 'd':2, 'c':'foo'}
dicts[2] = {'e':57,'c':3}
super_dict = {'a':[1], 'b':[2], 'c':[3,'foo'], 'd':[2], 'e':[57]}
我写了以下代码:
super_dict = {}
for d in dicts:
for k, v in d.items():
if super_dict.get(k) is None:
super_dict[k] = []
if v not in super_dict.get(k):
super_dict[k].append(v)
可以更优雅地展示/优化吗?
请注意, 我在SO上发现了另一个问题,但它恰好是合并2个字典。
一只斗牛犬
白猪掌柜的
子衿沉夜
相关分类