关于python:用python方法在字典中打印max值的键

Print the key of the max value in a dictionary the pythonic way

本问题已经有最佳答案,请猛点这里访问。

给定一个字典d,其中key-values对由一个字符串作为键和一个整数作为值组成,我想在值最大的地方打印key-string。

当然,我可以循环访问d.items(),存储最大值及其键,并在for循环之后输出后者。但是,仅仅使用一个max函数构造,是否有一种更"Python式"的方法

1
print max(...)


字母名称(P)Or even shorter(from comment):(p)字母名称