pythonstrip()函数
时间: 2023-10-24 18:26:31 浏览: 143
python strip()函数 介绍
strip() 是 Python 字符串的一个内置函数,用于去除字符串两端的空格或指定的字符。
使用示例:
```python
string = " Hello, World! "
new_string = string.strip()
print(new_string) # 输出: "Hello, World!"
string = "********Hello, World!********"
new_string = string.strip("*")
print(new_string) # 输出: "Hello, World!"
```
strip() 函数可以不带参数,表示去除字符串两端的空格;也可以传递一个参数,表示去除字符串两端的指定字符。
希望这个回答能够帮到你!如果有更多问题,请继续提问。
阅读全文