python练习-查找出字典中值最大的键值对

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

猜你喜欢

转载自www.cnblogs.com/liangyf/p/11776021.html