删除所有的1 x = [1, 1, 6, 3, 9, 4, 5, 1, 1, 2, 1, 9, 6, 4] 使用lambda函数和filter来过滤掉x中的1 filtered_x = list(filter(lambda n: n != 1, x)) 不是1的数字,存进x列表,filter用于插入元素到第二个位置 print(filtered_x) # 输出: [6, 3, 9, 4, 5, 2, 9, 6, 4]