这样为什么会报错
def is_not_empty(s): return len(s.strip()) > 0 print filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])
这样为什么会报错?
def is_not_empty(s): return len(s.strip()) > 0 print filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])
这样为什么会报错?
2015-04-24
举报