Python strip() 方法
Python 字符串对象的 strip() 方法用于移除字符串头尾指定的字符 ( 默认为空白符 )
空格 ( ' ' ) 、制表符 ( \t ) 、换行符 (\r\n) 统称为空白符
语法
str.strip([chars]);
参数
参数 | 说明 |
---|---|
chars | 移除字符串头尾指定的字符 |
返回值
返回移除字符串头尾指定的字符生成的新字符串
范例
下面的代码使用 strip() 方法去掉字符串头尾指定的符号
>>> '\r\n \t Hello\r\n \t '.strip() 'Hello' >>> '=========Hello------------'.strip('=-') 'Hello'