如何从最高到最低排序多个数字字典值

时间:2016-05-15 18:32:13

标签: python sorting dictionary

有没有办法用多位数对字典值进行排序?我尝试过这里使用的方法:How to sort a dictionary to print from highest value to lowest for each key?,但它只适用于单个数字的整数值。例如,我的代码目前看起来像这样:

for line in students:
        student = line.split(' ')
        d[student[1]] = (student[3])
        print (d)
     od = sorted(d.items(), key=lambda x: x[1], reverse=True)
     print(od)

其中学生是此文本文件的.readlines()的结果,我使用的是第一个得分:

Name= kirsty Score= 9 10 10 `
Name= anne Score= 4 5 6  
Name= charlie Score= 1 1 1 
Name= bruce Score= 7 8 9 
Name= danny Score= 10 11 12 

Danny应该是字典中的第一个条目,但我的实际输出是:

[('kirsty', '9'), ('bruce', '7'), ('anne', '4'), ('danny', '10'), ('charlie', '1')]

有人可以帮忙吗?

2 个答案:

答案 0 :(得分:1)

更改键功能,将计算排序的值转换为数字。假设您只使用整数,排序行将是:

od = sorted(d.items(), key=lambda x: int(x[1]), reverse=True)

答案 1 :(得分:1)

您需要转换为int进行比较。您看到的行为来自比较字符串。

例如 -

sorted(d.items(), key = lambda x: int(x[1]), reverse  = True)