Python中:
str.strip(): 用来去除头尾字符、空白符(包括\n、\r、\t、' ')
str.lstrip():同strip(), 但是只去除头部字符
str.rstrip():同strip(), 但是只去除尾部字符
但是我们发现,中间的没有处理!
其实我们可以使用str.replace(old, new)函数:
str.replace(old, new)
或是直接删除:
str.replace(old, "")