1、strip:方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。
注意:该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。
>>> a = '\r\n 123 \r\n'
>>> print(a.strip())
123
2、replace: 替换
>>> a
'\r\n 123 \r\n'
>>> print(a.replace(" ", ""))
123
replace
值匹配参数一的内容(忽略\r\n)
3、isdigit
是否是数字
4、去除列表中的\r\n
a = ['\r\n ', '\r\n ', '葫芦', '\r\n ', '2019-02-28 ', '\r\n ']
s=[x.strip() for x in a]
print(s)
s=[x.strip() for x in a if x.strip()!='']
print(s)