input: # 需求,查找出字典中值最大的键值对 d = {‘1‘:"a",‘2‘:‘b‘,‘3‘:‘c‘} new_tup = zip(d.values(),d.keys()) #(‘a‘, ‘1‘), (‘b‘, ‘2‘), (‘c‘, ‘3‘) print(max(new_tup)) output: (‘c‘, ‘3‘)
python练习-查找出字典中值最大的键值对
原文:https://www.cnblogs.com/liangyf/p/11776021.html