Answers for "python sort array of dictionary by one value"

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 "python sort array of dictionary by one value"

Python Answers by Framework

Browse Popular Code Answers by Language