面试题答案一键面试my_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] new_list = [num for num in my_list if num % 2 == 0] print(new_list)