python filter函数
Posted F
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python filter函数相关的知识,希望对你有一定的参考价值。
number_list = range(-5, 5) less_than_zero = list(filter(lambda x: x < 0, number_list)) print(less_than_zero)
输出:
[-5, -4, -3, -2, -1]
以上是关于python filter函数的主要内容,如果未能解决你的问题,请参考以下文章
python函数_map()filter()和reduce()
Python 之内置函数:filter、map、reduce、zip、enumerate