共通のキーとそれらの値の合計を含むfinalDicを作成したい
myDic = [{2:1, 3:1, 5:2}, {3:4, 6:4, 2:3}, {2:5, 3:6}, ...]
最初に共通のキーを見つけます
commonkey = [{2:1, 3:1}, {2:3, 3:4}, {2:5, 3:6}]
次に、合計して値で並べ替えます
finalDic= {3:11, 2,9}
私はこれを試しましたが、欲しいものを閉じませんでした
import collections
myDic = [{2:1, 3:1, 5:2}, {3:4, 6:4, 2:3}, {2:5, 3:6}]
def commonKey(x):
i=0
allKeys = []
while i<len(x):
for key in x[0].keys():
allKeys.append(key)
i=i+1
commonKeys = collections.Counter(allKeys)
commonKeys = [i for i in commonKeys if commonKeys[i]>len(x)-1]
return commonKeys
print commonKey(myDic)
ありがとう