Sorting Dictionary By Value

In the example below, we sort a dictionary by it's values.

some_dict = { 'Google': 29, 'Apple': 13, 'FB': 19, 'Amazon': 15}

sorted_dict = {k:v for k,v in sorted(some_dict.items(), key=lambda x: x[1], reverse=False)}
sorted_dict
{'Apple': 13, 'Amazon': 15, 'FB': 19, 'Google': 29}