Answers for "how to sort a dict in python"

35

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)
Posted by: Guest on November-23-2020
1

sort dict by values

dict(sorted(x.items(), key=lambda item: item[1]))
Posted by: Guest on March-17-2021
1

sort dictionary

#for dictionary d
sorted(d.items(), key=lambda x: x[1]) #for inceasing order
sorted(d.items(), key=lambda x: x[1], reverse=True) # for decreasing order
#it will return list of key value pair tuples
Posted by: Guest on May-23-2020
2

python sort the values in a dictionaryi

from operator import itemgetter
new_dict = sorted(data.items(), key=itemgetter(1))
Posted by: Guest on September-24-2020
1

python sort dictionary by key

def sort_dict(dictionary, rev = True):
    l = list(dictionary.items())
    l.sort(reverse = rev)
    a = [item[1] for item in l]    
    z = ''    
    for x in a:
        z = z + str(x)
    return(z)
Posted by: Guest on July-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language