码迷,mamicode.com
首页 > 编程语言 > 详细

【Python】filter()的结果仍可以被filter()

时间:2018-12-09 22:07:49      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:root   filter   overflow   ==   ice   bin   list   python   ons   

def test_twice_filter(): list_a = [1, 2, 3, 4, 5] x = filter(lambda m: m > 2, list_a) y = filter(lambda n: n < 4, x) print(list(y)) if __name__ == ‘__main__‘: test_twice_filter()

结果:

ssh://root@250.250.250.250:250/usr/bin/python3.6 -u /home/dba/HAL_9000/dbAlertAPP/filters/misc_item_filter.py
[3]

参考阅读:

【Python】filter()的结果仍可以被filter()

标签:root   filter   overflow   ==   ice   bin   list   python   ons   

原文地址:http://blog.51cto.com/l0vesql/2328164

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!