Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

order dictionary by value python

x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0}
sorted_dict = {k: v for k, v in sorted(x.items(), key=lambda item: item[1])}
print(sorted_dict)
#{0: 0, 2: 1, 1: 2, 4: 3, 3: 4}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #order #dictionary #python
ADD COMMENT
Topic
Name
3+2 =