1. 字符串的strip()方法 原文: “把一个序列中的空字符串删掉,可以这么写: def not_empty(s): return s and s.strip() list(filter(not_empty, ['A', '', 'B', None, 'C', ' '])) # 结果: ['A', 'B', 'C']” 疑问:如果改为, def not_empty(s): return s.strip() 就会提示错误,AttributeError: 'Nonetype' object h…