sort keys by values python code example
Example 1: python sort the values in a dictionary
from operator import itemgetter
new_dict = sorted(data.items(), key=itemgetter(1))
Example 2: sorting a dictionary by value in python
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}