代码笔记def _strip_spaces(alist):去除列表里的字符串的空格return map(lambda x: x.strip(), alis
代码笔记
def _strip_spaces(alist): """去除列表里的字符串的空格""" return map(lambda x: x.strip(), alist)
代码笔记
def _strip_spaces(alist): """去除列表里的字符串的空格""" return map(lambda x: x.strip(), alist)