面试题答案一键面试my_list = [1, 2, 3, 4, 5] my_list.insert(2, 6) my_list.remove(4) my_list.reverse() print(my_list)