python filter()和map()函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python filter()和map()函数相关的知识,希望对你有一定的参考价值。
1.filter(func,iterable)
2.map(func,iterable)
1.filter(func,iterable)
filter func要是一个限定第二个参数范围
2.map(func,iterable)
map 的func是如果要判断元素的范围只能返回T or F
lis=[1,2,3,4,5,6]
r= map(lambda x: x if x>3 else 1,lis)
for j in r:
print(j)
以上是关于python filter()和map()函数的主要内容,如果未能解决你的问题,请参考以下文章
Python高阶函数_map/reduce/filter函数