面试题答案一键面试original_list = [1, 2, 3, 4, 5] result = list(map(lambda x: x**2, original_list)) print(result)