• 首页
    • 问答
      • c
      • c++
      • haskell
      • java
      • javascript
      • php
      • python
      • r
      • ruby
      • shell
      • .net
      • go
      • vb.net
      • erlang
    • 教程
    • 书籍
    • IT新闻

Sorting dictionary keys in python

2018-06-05 18:22:19  

This question already has an answer here:

  • How do I sort a dictionary by value? 38 answers

  • >>> mydict = {'a':1,'b':3,'c':2}
    >>> sorted(mydict, key=lambda key: mydict[key])
    ['a', 'c', 'b']
    

    我喜欢这一个:

    sorted(d, key=d.get)
    

    my_list = sorted(dict.items(), key=lambda x: x[1])
    
    链接地址: http://www.djcxy.com/p/18146.html

    上一篇: 排序值并返回来自dict python的键的列表

    下一篇: 在Python中对字典键进行排序

    • 相关推荐
    • is it possible to use variables in remote ssh command? 2018-07-04
    • 是否有可能在远程SSH命令中使用变量? 2018-07-04
    • Execute Bash script stored in a file over SSH 2018-07-04
    • 通过SSH执行存储在文件中的Bash脚本 2018-07-04
    • UNIX ssh script, running commands on remote server 2018-07-04
    • UNIX ssh脚本,在远程服务器上运行命令 2018-07-04
    • how to run a script file remotely using ssh 2018-07-04
    • 如何使用ssh远程运行脚本文件 2018-07-04
    • Run ssh and immediately execute command 2018-07-04
    • 运行ssh并立即执行命令 2018-07-04

    友情链接