summaryrefslogtreecommitdiff
path: root/progs/a838.py
blob: 9dfef530bd6201a100d0088517363eda6feb7229 (plain)
1
2
3
4
5
from collections import Counter
def sort_counter(dict1):
 x = Counter(dict1)
 sort_counter=x.most_common()
 return sort_counter