Python中有關filter的用法詳解

黄舟
發布: 2017-08-23 13:19:19
原創
3063 人瀏覽過


Python中有關filter的用法詳解

1 class filter(object)
2  |  filter(function or None, iterable) --> filter object
3  |  
4  |  Return an iterator yielding those items of iterable for which function(item)
5  |  is true. If function is None, return the items that are true.
登入後複製

filter讀入iterable所有的項,判斷這些項對function是否為真,傳回一個包含所有為真的項的迭代器。如果function是None,則傳回非空的項。

1 In [2]: import re
2 In [3]: i = re.split(',',"123,,123213,,,123213,")
3 In [4]: i4 Out[4]: ['123', '', '123213', '', '', '123213', '']
登入後複製

這時,清單i內包含空字串。

1 In [7]: print(*filter(None, i))
2 123 123213 123213
登入後複製

這時filter把列表中的空串過濾掉了,得到一個只含非空串的迭代器。

In [9]: print(list(filter(lambda x:x=='', i)))
['', '', '', '']
登入後複製

由於lambda對空串為真,所以filter把非空串過濾掉,只剩下空字串。

以上是Python中有關filter的用法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板