sorting dictionary in python 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 value 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}

Example 4: python sort the values in a dictionaryi

from operator import itemgetter
new_dict = sorted(data.items(), key=itemgetter(1))

Example 5: sort list of dictionaries python

unsorted_list = [{"key1":5, "key2":2}, {"key1":5, "key2":1}]
sorted_list = sorted(unsorted_list, key=lambda k: k["key2"])

Example 6: sort dictionary by key

sortedDictionary = sorted(mydictionary.keys())

Tags:

Misc Example