首页 > 代码库 > python filter()和map()函数

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()函数