为了账号安全,请及时绑定邮箱和手机立即绑定

print filter(lambda x:x and len(x.strip())>0,['test', None, '', 'str', ' ', 'END'])

print filter(lambda x:x and len(x.strip())>0,['test', None, '', 'str', '  ', 'END'])

这句代码错在哪里?只是把s换成了x而已啊

正在回答

1 回答

你好 请问一下,你用的是什么版本 的pyhton ,   是 2.X , 还是3.X

如果是python3.X , filter 是返回filter 对象

filter(lambda x: x%2==0, list(range(10)))

<filter object at 0x1021bbac8>

list(filter(lambda x: x%2==0, list(range(10))))

[0, 2, 4, 6, 8]


如果是python2.7 

print filter(lambda x:x and len(x.strip())>0,['test', None, '', 'str', '  ', 'END'])

这样是没有问题的,

https://img1.sycdn.imooc.com//5afff648000137e712120444.jpg

如果是python 3.6   , 需要转成list 

print (list(filter(lambda x:x and len(x.strip())>0,['test', None, '', 'str', '  ', 'END'])))

https://img1.sycdn.imooc.com//5afff6780001422113540612.jpg


2 回复 有任何疑惑可以回复我~
#1

慕后端4582086 提问者

非常感谢!
2018-05-20 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

print filter(lambda x:x and len(x.strip())>0,['test', None, '', 'str', ' ', 'END'])

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信