python的strip函数
时间: 2023-07-17 09:09:33 浏览: 196
python strip()函数 介绍
strip() 函数是 Python 字符串的一个内置方法,用于去除字符串两端的指定字符(默认为空格)。
它的语法如下:
```python
string.strip([chars])
```
其中,`string` 是要操作的字符串,`chars` 是可选参数,用于指定要去除的字符。
使用示例:
```python
# 去除字符串两端的空格
s = " hello world "
result = s.strip()
print(result) # 输出:"hello world"
# 去除字符串两端的指定字符
s = "===hello world==="
result = s.strip("=")
print(result) # 输出:"hello world"
```
注意:strip() 函数会返回一个新的字符串,原始字符串不会被修改。如果想去除字符串中间的字符,可以使用其他方法,如replace() 或正则表达式。
阅读全文