can you sort over a dictionary code example
Example 1: python sort dict by value
A={1:2, -1:4, 4:-20}
{k:A[k] for k in sorted(A, key=A.get)}
output:
{4: -20, 1: 2, -1: 4}
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}