how to sort dict in python by value code example
Example 1: how can I sort a dictionary in python according to its values?
s = {1: 1, 7: 2, 4: 2, 3: 1, 8: 1}
k = dict(sorted(s.items(),key=lambda x:x[0],reverse = True))
print(k)
Example 2: python sort the values in a dictionaryi
from operator import itemgetter
new_dict = sorted(data.items(), key=itemgetter(1))
Example 3: sort dict by value python 3
>>> d = {"aa": 3, "bb": 4, "cc": 2, "dd": 1}
>>> for k in sorted(d, key=d.get, reverse=True):
... k, d[k]
...
('bb', 4)
('aa', 3)
('cc', 2)
('dd', 1)
Example 4: sort list of dictionaries python by value
newlist = sorted(list_to_be_sorted, key=lambda k: k['name'])