V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
? Learn Python the Hard Way
Python Sites
? PyPI - Python Package Index
? http://diveintopython.org/toc/index.html
? Pocoo
值得关注的项目
? PyPy
? Celery
? Jinja2
? Read the Docs
? gevent
? pyenv
? virtualenv
? Stackless Python
? Beautiful Soup
? 结巴中文分词
? Green Unicorn
? Sentry
? Shovel
? Pyflakes
? pytest
Python 编程
? pep8 Checker
Styles
? PEP 8
? Google Python Style Guide
? Code Style from The Hitchhiker's Guide
fcicq
V2EX  ?  Python

被 min() 给坑了

  •  
  •   fcicq · 2011-07-10 23:39:23 +08:00 · 5519 次点击
    这是一个创建于 4675 天前的主题,其中的信息可能已经有所发展或是发生改变。
    实际上要的是这个...
    def returnmin(d):
    return min(d,key = lambda a: d.get(a))

    测试
    min({'a':5, 'b':4, 'c':3}), 比较的是 key 而不是 value...
    4 条回复  ?  1970-01-01 08:00:00 +08:00
    bcxx
        1
    bcxx  
       2011-07-10 23:41:56 +08:00
    最害怕就是字典排序了TAT
    shellex
        2
    shellex  
       2011-07-10 23:52:46 +08:00
    当然。
    phus
        3
    phus  
       2011-07-11 00:21:24 +08:00
    min/max/list/set都假设的参数是iterable的。
    因为dict的__iter__是返回key, 所以min就比较key了。
    blackbird
        4
    blackbird  
       2011-07-11 00:54:50 +08:00
    min(d, key=d.get)
    这样写也行
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5214 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 09:38 · PVG 17:38 · LAX 02:38 · JFK 05:38
    Developed with CodeLauncher
    ? Do have faith in what you're doing.


    http://www.vxiaotou.com