Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.1k views
in Technique[技术] by (71.8m points)

python - How to compare multiple dictionaries to find out duplicate keys and how many times they are repeated

I need to compare more than 2 dictionaries to find out how many duplicate keys and how many times they are repeated. for example

D1 = {'a' : 'value', 'b': 'value', 'c': 'value', 'd', 'value'}
D2 = {'d', 'value', 'a' : 'value'}
D3 = {'a' : 'value', 'd', 'value', 'b': 'value'}
D4 = {'a' : 'value'}

the output shoule print repeated keys and how many times each key is repeated for example:

4-a # key 'a' is repeated 4 times accross dictionaries
2-b 
3-d

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

List Comprehension and then just iterate through array

dic = [x for x in D1] + [x for x in D2] + [x for x in D3] + [x for x in D4]
ans = {} 
for x in dic:
    if x in list:
        ans[x] += 1
    else:
        ans[x] = 1

update
I forgot about dictionary comprehension, so you can shorten that up.

dic = [x for x in D1]+ [x for x in D2] +  [x for x in D3] + [x for x in D4]  
ans = {i:dic.count(i) for i in dic}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...