1from collections import Counter
2# Initial Dictionary
3my_dict = {'t': 3, 'u': 4, 't': 6, 'o': 5, 'r': 21}
4k = Counter(my_dict)
5# Finding 3 highest values
6high = k.most_common(3)
7print("Dictionary with 3 highest values:")
8print("Keys: Values")
9for i in high:
10 print(i[0]," :",i[1]," ")