filter和map和reduce map(function,iterable...) -> list 映射,对列表中的每个值操作 返回操作后的数值组成列表 # 给列表值+1 l = [1,2,3,4,5,6,7,8,9,10] print(list(map(lambda x:x+1,l))) # [2, 3, 4, 5, 6, 7, 8, 9, 10, 11] filter(function,iterable...) -> list, tuple, or string 过滤,对列表中的每个值…