python 获取字典最大值的两种方法

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))

 

python 获取字典最大值的两种方法_第1张图片

 operator.itemgetter的用法参考博客https://blog.csdn.net/Big_Pai/article/details/88567626

你可能感兴趣的:(python学习)