改了参数名称为什么就错误? 运行结果是一样的
print filter(lambda x: x and len(x.strip()) > 0, ['test', None, '', 'str', ' ', 'END']) 结果如下 ['test', 'str', 'END']
print filter(lambda x: x and len(x.strip()) > 0, ['test', None, '', 'str', ' ', 'END']) 结果如下 ['test', 'str', 'END']
2018-12-26
举报