加入IF条件不也可以?
print filter(lambda s: True if s and len(s.strip())>0 else False , ['test', None, '', 'str', ' ', 'END']); 这样子不也可以吗?
print filter(lambda s: True if s and len(s.strip())>0 else False , ['test', None, '', 'str', ' ', 'END']); 这样子不也可以吗?
2015-10-30
举报