面试题答案一键面试my_dict = {'a': 3, 'b': 1, 'c': 2} sorted_list = sorted(my_dict.items(), key=lambda item: item[1]) print(sorted_list)