一维数组 def is_odd(n): return n % 2 == 1 newlist = filter(is_odd, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) print(newlist) [1, 3, 5, 7, 9] 二维数组 依照条件过滤二维数组