Answers for "how to sort a python dictionary"

35

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)
Posted by: Guest on November-23-2020
2

sort the dictionary in python

d = {2: 3, 1: 89, 4: 5, 3: 0}
od = sorted(d.items())
print(od)
Posted by: Guest on July-18-2020

Code answers related to "how to sort a python dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language