strip在python中是指刪除字符串頭尾指定字符或字符序列的方法,strip的語法格式“string.strip(s[,chars])”,這里chars是指定刪除的字符,該方法返回的是字符串的副本并刪除前導和后綴字符。
具體使用步驟:
1、首先打開python編輯器,新建一個python項目。
2、在python項目中定義一個字符串。
str = '1a2b12c21'
3、再使用strip方法刪除頭尾的1和2字符。
str.strip('12') #刪除頭尾的1和2
返回結果:
'a2b12c'
相關示例代碼:
>>> str = ' ab cd '
>>> str
' ab cd '
>>> str.strip() #刪除頭尾空格
'ab cd'
>>> str.lstrip() #刪除開頭空格
'ab cd '
>>> str.rstrip() #刪除結尾空格
' ab cd'