Python過濾器

filter()爲python內置函數 以下 filter()函數有兩個參數: 第一個,自定函數名,必須的 第二個,須要過濾的列,也是必須的python >>> def is_odd(x): return x%2==1 >>> filter(is_odd,[1,4,5,6,7,8]) <filter object at 0x104157b70> >>> result=filter(is_
相關文章
相關標籤/搜索