在Python中字符串處理函數(shù)里有三個去空格(包括'\n', '\r', '\t', ' ')的函數(shù):
strip只能刪除兩側(cè)的字符
in:'****adf ****adfa****'.strip('*')
Out[180]: 'adf ****adfa'
strip 同時去掉左右兩邊的空格
lstrip 去掉左邊的空格
rstrip 去掉右邊的空格
具體示例如下:
>>>a=" gho stwwl "
>>>a.lstrip() 'gho stwwl '
>>>a.rstrip() ' gho stwwl'
>>>a.strip() 'gho stwwl'
聲明:s為字符串奶段,rm為要刪除的字符序列
s.strip(rm) 刪除s字符串中開頭瞧预、結(jié)尾處弄痹,位于 rm刪除序列的字符
s.lstrip(rm) 刪除s字符串中開頭處,位于 rm刪除序列的字符
s.rstrip(rm) 刪除s字符串中結(jié)尾處,位于 rm刪除序列的字符
注意:
1. 當(dāng)rm為空時贷币,默認刪除空白符(包括'\n', '\r', '\t', ' ')
>>> a = ' 123'
>>> a.strip()
'123'
>>> a='\t\tabc'
'abc'
>>> a = 'sdff\r\n'
>>> a.strip()
'sdff'
2.這里的rm刪除序列是只要邊(開頭或結(jié)尾)上的字符在刪除序列內(nèi),就刪除掉简烘。
>>> a = '123abc'
>>> a.strip('21')
'3abc' 結(jié)果是一樣的
>>> a.strip('12')
'3abc'