1. 程式人生 > >python filter 函數

python filter 函數

ret urn == nbsp style turn 函數 div 序列

filter 函數,是用來過濾一個序列使用的。接收兩個參數(函數, 序列)

例如判斷是否為偶數

1 def num(a)
2     if a%2==0
3         return a
4 
5 filter(num,1,2,3,4,5,6,7,8,910)

python filter 函數