You are on page 1of 2

WORKSHEET – 2.

Name: Harpreet Section/Group: 612-B


Subject: Python Lab UID: 20BCS2568
Branch: BE CSE (4th Semester)

Ques 1:

Write a Python program to combine two dictionary adding values for common keys.
d1 = {'a': 100, 'b': 200, 'c':300},d2 = {'a': 300, 'b': 200, 'd':400}

Code :
from collections import Counter
d1 = {'a': 100, 'b': 200, 'c':300}
d2 = {'a': 300, 'b': 200, 'd':400}
d = Counter(d1) + Counter(d2)
print(d)

Output:
Ques 2:
Write a Python program to find the highest 3 values of corresponding keys in a
dictionary.

Code:
from collections import Counter

my_dict = {'A': 67, 'B': 23, 'C': 45, 'D': 56, 'E': 12,
'F': 69}
k = Counter(my_dict)
high = k.most_common(3)
print("Original Dictionary:")
print(my_dict, "\n")

print("Dictionary with 3 highest values:")


print("Keys: Values")
for i in high:
print(i[0]," :",i[1]," ")

Output:

You might also like