python字符串strip
时间: 2023-10-10 17:06:08 浏览: 76
Python中使用strip()方法删除字符串中空格的教程
Python中的字符串strip()方法是用来去除字符串首尾的指定字符(默认为空格)。
例如,假设我们有一个字符串 " Hello, World! ",其中前面有两个空格和后面有两个空格。如果我们想要去除首尾的空格,可以使用strip()方法:
```python
string = " Hello, World! "
new_string = string.strip()
print(new_string)
```
输出结果为:
```
Hello, World!
```
我们也可以指定要去除的字符,例如去除首尾的感叹号:
```python
string = "!!Hello, World!!"
new_string = string.strip("!")
print(new_string)
```
输出结果为:
```
Hello, World
```
strip()方法返回一个新的字符串,原始字符串不会被修改。
阅读全文