filter是将一个序列进行过滤,返回迭代器的对象,去除不满足条件的序列。

链接:https://www.runoob.com/python3/python3-func-filter.html

filter(function,data)

function作为条件选择函数。