Answers for "python dictionary sorted values"

2

python - sort dictionary by value

d = {'one':1,'three':3,'five':5,'two':2,'four':4}

# Sort
a = sorted(d.items(), key=lambda x: x[1])

# Reverse sort
r = sorted(d.items(), key=lambda x: x[1], reverse=True)
Posted by: Guest on February-25-2021

Code answers related to "python dictionary sorted values"

Python Answers by Framework

Browse Popular Code Answers by Language