有时我们需要字典中数值最大的那个键的名字,使用max(dict, key=dict.get)函数非常的方便
key_name = max(my_dict, key=my_dict.get)
获取之后你便可以随意使用你的数据了