python sort dict by key code example

Example 1: how can I sort a dictionary in python according to its values?

s = {1: 1, 7: 2, 4: 2, 3: 1, 8: 1}
k = dict(sorted(s.items(),key=lambda x:x[0],reverse = True))
print(k)

Example 2: sort list of dictionaries by key python

newlist = sorted(list_to_be_sorted, key=lambda k: k['name'])

Example 3: sort dictionary by key

sortedDictionary = sorted(mydictionary.keys())

Example 4: python sort dict by key

A={1:2, -1:4, 4:-20}
{k:A[k] for k in sorted(A)}

output:
{-1: 4, 1: 2, 4: -20}

Example 5: sort the dictionary in python

d = {2: 3, 1: 89, 4: 5, 3: 0}
od = sorted(d.items())
print(od)

Example 6: python get dictionary keys sorted by value

sorted(A, key=A.get)

Tags:

Misc Example