MMTTMM
这实际上是提供OP所需解决方案的答案:>>> d = {320:1, 321:0, 322:3}>>> d.items()[(320, 1), (321, 0), (322, 3)]>>> # find the minimum by comparing the second element of each tuple>>> min(d.items(), key=lambda x: x[1]) (321, 0)d.iteritems()但是,对于较大的词典,使用将更为有效。