Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to sort dictionary in python by value

# your dictionary
a = {'a':4, 'c':5, 'b':3, 'd':0}

# sort x by keys
a_keys = dict(sorted(a.items(),key=lambda x:x[0],reverse = False)) # ascending order
# output: {'a': 4, 'b': 3, 'c': 5, 'd': 0}

# # sort x by values
a_values = dict(sorted(a.items(),key=lambda x:x[1],reverse = False)) # ascending order
# output: {'d': 0, 'b': 3, 'a': 4, 'c': 5}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #sort #dictionary #python
ADD COMMENT
Topic
Name
5+8 =