字典排序

我们通过使用sorted()函数,并指定key参数来指定使用字典的key或者value来排序:

参数key必须为一函数,在每一个元素做出比较前调用。这里的key参数使用对象的索引(indice)

1.按key排序

dic = {'a':31, 'b':5, 'c':3, 'd':4, 'e':74, 'f':0}
dict = sorted(dic.iteritems(), key=lambda element: element[0], reverse=True)
print dict

note
dic.iteritems()产生的结果为[(key1, value1), (key2, value2), ...]这种结构,所以才能使用element[0或1]引用

输出结果

[('f', 0), ('e', 74), ('d', 4), ('c', 3), ('b', 5), ('a', 31)]

2.按value排序

dic = {'a':31, 'b':5, 'c':3, 'd':4, 'e':74, 'f':0}
dict = sorted(dic.iteritems(), key=lambda element: element[1], reverse=True)
print dict

输出结果

[('e', 74), ('a', 31), ('b', 5), ('d', 4), ('c', 3), ('f', 0)]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值