phython strip
时间: 2023-11-19 20:41:35 浏览: 78
python strip()函数 介绍
Python中的strip()函数是用于去除字符串两端的指定字符(默认为空格)的方法。它返回一个新的字符串,不会修改原始字符串。
例如:
```
string = " Hello, World! "
new_string = string.strip()
print(new_string) # 输出: "Hello, World!"
```
strip()函数也可以接受一个参数,指定要去除的字符。例如:
```
string = "***Hello, World!***"
new_string = string.strip("*")
print(new_string) # 输出: "Hello, World!"
```
希望这能帮到你!如果有任何其他问题,请随时提问。
阅读全文