return s and len(s.strip()) > 0中s是什么
代码中的s有什么用,为什么不直接return len(s.strip)>0。虽然试过会报错,不过不懂为什么
def is_not_empty(s):
return s and len(s.strip()) > 0
filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])
代码中的s有什么用,为什么不直接return len(s.strip)>0。虽然试过会报错,不过不懂为什么
def is_not_empty(s):
return s and len(s.strip()) > 0
filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])
2017-10-30
举报