• 技术文章 >常见问题 >Python常见问题

    python中如何求取字典最大值?

    宋雪维宋雪维2021-02-05 08:41:20原创27328

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    方法一:通过sorted()函数排序所有的value

    import  operator
    # 先通过sorted 和operator 函数对字典进行排序,然后输出value的键
    classCount={"c":1,"b":4,"d":2,"e":6}
    print(classCount.items())
    SortedclassCount1= sorted(classCount.items(), key=operator.itemgetter(1), reverse=True)
    print(SortedclassCount1[0][0])
     
    # 通过max求字典value对应的key
    print(max(classCount,key=classCount.get))

    方法二:通过max函数取字典中value所对应的key值

    # 例:
    price = {
        'a':1,
        'b':7,
        'c':5,
        'd':10,
        'e':12,
        'f':3
    }
    result_max = max(price,key=lambda x:price[x])
    print(f'max:{result_max}')
    >>>>
    max:e

    方法三:通过map()函数求取字典值

    keys = m.keys()
    keys.sort()
    ma=map(m.get,keys)print ma[len(ma) - 1]

    以上就是python中求取字典值的三种方法,大家可以选择自己喜欢的方法使用哦~

    专题推荐:python字典
    上一篇:python中字典如何按照value排序? 下一篇:python中如何用eval()函数实现字符串转列表?

    相关文章推荐

    • python中字典遍历时如何同时获得键和值?• 如何使用python中range()函数实现逆序遍历?• python中如何实现列表与字典的相互转换?• python中字典与json相互转换的方法• python中字典如何按照value排序?• python中字典按key值排序的实现方法

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网