摘要: 1. 字符串的strip()方法 原文: “把一个序列中的空字符串删掉,可以这么写: def not_empty(s): return s and s.strip() list(filter(not_empty, ['A', '', 'B', None, 'C', ' '])) # 结果: ['A' 阅读全文
posted @ 2016-08-25 09:06 Abraham_Xu 阅读(346) 评论(0) 推荐(0) 编辑