发布于 1年前 Python 如何列表过滤 result = list(filter(lambda x: x % 2 == 0, [1, 2, 3, 4, 5, 6])) print(result) # [2, 4, 6]