python filter()和map()用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python filter()和map()用法相关的知识,希望对你有一定的参考价值。
filter(function or None, iterable) --> filter object:循环可迭代对象的元素,将这些元素作为function的参数,如果函数返回为True 则返回这些元素,否则就过滤这些元素
li=[11,22,33,44,55,0] def fun1(a): return a>22 re=list(filter(fun1,li)) #注意在python3以后这里不再返回的是列表而是一个可迭代的对象,所以要输出列表的话需要转换一下 print(re) #输出:[33, 44, 55]
map(func, *iterables) :同样接收一个函数和一个可迭代的对象,将对象的元素作为func的参数,并返回func运行的结果
li=[11,22,33,44,55,0] def fun1(a): return a+1 re=list(map(fun1,li)) print(re) #输出:[12, 23, 34, 45, 56, 1]
以上是关于python filter()和map()用法的主要内容,如果未能解决你的问题,请参考以下文章
python map() filter() reduce()函数的用法以及实例
Python---高级函数map, filter, zip, enumerate等的用法
python中 Lambda,Map,Filter,Itertools,Generator高级函数的用法