为什么这个错了
is_not_empty=lambda s: s and len(s.strip())>0
print filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])
这个为什么不对
is_not_empty=lambda s: s and len(s.strip())>0
print filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])
这个为什么不对
2017-08-31
举报