函數原型
宣告:s為字串,rm為要刪除的字元序列
s.strip(rm) 刪除s字串中開頭、結尾處,位於rm刪除序列的字元
s.lstrip(rm ) 刪除s字串中開頭處,位於rm刪除序列的字元
s.rstrip(rm) 刪除s字串中結尾處,位於rm刪除序列的字元
注意:
1. 當為空時,預設刪除空白符(包括'n', 'r', 't', ' ')
例如:
>>> a = ' 123' >>> a.strip() '123' >>> a='\t\tabc' 'abc' >>> a = 'sdff\r\n' >>> a.strip() 'sdff'
2.這裡的rm刪除序列是只要邊(開頭或結尾)上的字元在刪除序列內,就刪除掉。
例如 :
>>> a = '123abc' >>> a.strip('21') '3abc' 结果是一样的 >>> a.strip('12') '3abc'
更多python strip()函數介紹相關文章請關注PHP中文網!