當前位置:成語大全網 - 新華字典 - python字典中根據值的大小,按順序排列鍵有什麽方法?

python字典中根據值的大小,按順序排列鍵有什麽方法?

s?=?{"a":"bb","b":"cc","c":"aa"}

def?fun(s):

d?=?sorted(s.iteritems(),key=lambda?t:t[1],reverse=False)

return?d

d?=?fun(s)

print?d

iteritems()得到的[(鍵,值)]的列表,通過sorted方法,指定排序的鍵值key是原來字典中的value屬性,其中用到了匿名函數lambda,參數為t列表,返回第二個元素t[1],也就是每個鍵值對中的value,?從小到大排序時reverse=False,從大到小排序是True!