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

python按照字典排序

时间:2018-07-31 17:26:09      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:字典   port   nbsp   get   div   imp   按照字典排序   getter   lam   

d = {a:1,b:4,c:2}

方法一:

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

方法二:

import operator
sorted(d.items(),key = operator.itemgetter(1))

 

python按照字典排序

标签:字典   port   nbsp   get   div   imp   按照字典排序   getter   lam   

原文地址:https://www.cnblogs.com/students/p/9396151.html

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