有时候,取值得到一个字典,然后想根据字典的value进行排序
>data = {'a':1, 'c':3, 'b':2} >result=sorted(data.items(),key=lambda x:x[1],reverse=False) >print result >[('a', 1), ('b', 2), ('c', 3)]