Python filter用法

时间:2023-03-08 16:09:36
 class filter(object)
| filter(function or None, iterable) --> filter object
|
| Return an iterator yielding those items of iterable for which function(item)
| is true. If function is None, return the items that are true.

filter读入iterable所有的项,判断这些项对function是否为真,返回一个包含所有为真的项的迭代器。如果function是None,返回非空的项。

 In [2]: import re
In [3]: i = re.split(',',"123,,123213,,,123213,")
In [4]: i
Out[4]: ['', '', '', '', '', '', '']

这时,列表i内包含空串。

 In [7]: print(*filter(None, i))
123 123213 123213

这时filter把列表中的空串过滤掉了,得到一个只含非空串的迭代器。

In [9]: print(list(filter(lambda x:x=='', i)))
['', '', '', '']

由于lambda对空串为真,所以filter把非空串过滤掉,只剩下空串。