码迷,mamicode.com
首页 > 编程语言 > 详细

Python dict 按键和值排序

时间:2017-05-12 01:40:48      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:方法   需要   结果   div   排序   [1]   输出   ems   pos   

python 字典(dict)的特点就是无序的,按照键(key)来提取相应值(value),如果我们需要字典按值排序的话,那可以用下面的方法来进行:

1 下面的是按照value的值从大到小的顺序来排序。

dic = {‘a‘:31, ‘bc‘:5, ‘c‘:3, ‘asd‘:4, ‘aa‘:74, ‘d‘:0}
dict= sorted(dic.iteritems(), key=lambda d:d[1], reverse = True)
print dict

输出的结果:
[(‘aa‘, 74), (‘a‘, 31), (‘bc‘, 5), (‘asd‘, 4), (‘c‘, 3), (‘d‘, 0)]

下面我们分解下代码
dic.iteritems() 得到[(键,值)]的列表。
然后用sorted方法,通过key这个参数,指定排序是按照value,也就是第一个元素d[1]的值来排序。reverse = True表示是需要翻转的,默认是从小到大,翻转的话,那就是从大到小。

2 对字典按键(key)排序:
dic = {‘a‘:31, ‘bc‘:5, ‘c‘:3, ‘asd‘:4, ‘aa‘:74, ‘d‘:0}
dict= sorted(dic.iteritems(), key=lambda d:d[0]) d[0]表示字典的键
print dict

Python dict 按键和值排序

标签:方法   需要   结果   div   排序   [1]   输出   ems   pos   

原文地址:http://www.cnblogs.com/niuniuc/p/6843476.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!