sort a dictionary by key and value code example
Example 1: sort dictionary by key
sortedDictionary = sorted(mydictionary.keys())
Example 2: softing a dict in pythno
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}