0
Q:

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)
4
from operator import itemgetter
new_dict = sorted(data.items(), key=itemgetter(1))
0
sortedDictionary = sorted(mydictionary.keys())
3
x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0}
{k: v for k, v in sorted(x.items(), key=lambda item: item[1])}
{0: 0, 2: 1, 1: 2, 4: 3, 3: 4}
6

New to Communities?

Join the community