执行下面Python代码后,输出的结果为[1, 3, 5, 7]。
print(list(filter(lambda x: x % 2 == 0, [1, 2, 3, 4, 5, 6, 7, 8])))
对
错