python中如何求取字典最大值?
2897次观看
标签:
最大值
字典
求取
老师回答
方法一:通过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]
©本文版权归环球青藤所有,任何形式转载请联系我们。
免费直播
精选课程
相关推荐