PHP
·
发表于 5年以前
·
阅读量:8290
此函数在通过一个函数过滤给定的序列,测试序列中的每个元素是否为真。
arr = [1, 2, 3, 4, 5]
arr = list(filter(lambda x : x%2 == 0, arr))
print (arr) # [2, 4]