diff options
Diffstat (limited to 'progs/a838.py')
-rw-r--r-- | progs/a838.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/progs/a838.py b/progs/a838.py new file mode 100644 index 0000000..9dfef53 --- /dev/null +++ b/progs/a838.py @@ -0,0 +1,5 @@ +from collections import Counter
+def sort_counter(dict1):
+ x = Counter(dict1)
+ sort_counter=x.most_common()
+ return sort_counter
\ No newline at end of file |