方法一:通过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]
声明:本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果用户发布的作品侵犯了您的权利,请联系管理员:wupeng@hqwx.com
环球青藤
官方QQ群扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群