python移除字符串中的空格
时间: 2024-06-16 16:04:35 浏览: 126
Python去掉字符串中空格的方法
5星 · 资源好评率100%
以下是Python中移除字符串中空格的几种方法[^1]:
1. 使用strip()方法移除字符串两侧的空格:
```python
string = " Hello, World! "
new_string = string.strip()
print(new_string) # 输出:Hello, World!
```
2. 使用lstrip()方法移除字符串左侧的空格:
```python
string = " Hello, World! "
new_string = string.lstrip()
print(new_string) # 输出:Hello, World!
```
3. 使用rstrip()方法移除字符串右侧的空格:
```python
string = " Hello, World! "
new_string = string.rstrip()
print(new_string) # 输出: Hello, World!
```
请注意,以上方法都不会改变原始字符串的值,而是返回一个新的字符串。如果你想要改变原始字符串的值,可以将新的字符串赋值给原始字符串变量。
阅读全文