课程
/后端开发
/Python
/python进阶
print filter(lambda s:s if s and len(s.strip())>0 else 0, ['test', None, '', 'str', ' ', 'END'])
2019-01-23
源自:python进阶 2-10
正在回答
函数的返回值不是s,而是s and len(s.strip())>0,完整写就是print filter(lambda s:s and len(s.strip())>0 , ['test', None, '', 'str', ' ', 'END'])
举报
学习函数式、模块和面向对象编程,掌握Python高级程序设计