Answers for "python sort dict by value attribute"

3

sort dict by value

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}
Posted by: Guest on April-22-2020

Code answers related to "python sort dict by value attribute"

Python Answers by Framework

Browse Popular Code Answers by Language