美文网首页
python 使用sorted配合lamdba进行排序

python 使用sorted配合lamdba进行排序

作者: 我乐飞Plus | 来源:发表于2019-05-15 11:36 被阅读0次
    dico={'b':4,'g':0,'e':6,'k':-4}
    
    sorted_items = sorted(dico.items(), key=lambda x: (-x[1], x[0]))#按照字典的第二个元素(value)排序,负号表示倒序
    
    print(sorted_items)
    

    相关文章

      网友评论

          本文标题:python 使用sorted配合lamdba进行排序

          本文链接:https://www.haomeiwen.com/subject/lptpaqtx.html