Answers for "how to sort dictionary based on both key and value"

1

sort dict by value

dict(sorted(x.items(), key=lambda item: item[1]))
Posted by: Guest on March-17-2021
0

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)
Posted by: Guest on September-17-2020

Code answers related to "how to sort dictionary based on both key and value"

Python Answers by Framework

Browse Popular Code Answers by Language