1. max_count_list = {}
    2. # 转换 list 对象
    3. max_count_list = list(max_count.items())
    4. # 对对象进行排序
    5. max_count_list.sort(key=lambda x:x[1])
    6. # 最后的结果是 排序好的列表
    7. print(max_count_list)
    8. print(max_count_list[-1])