python字符串去空格
时间: 2023-08-27 09:12:22 浏览: 89
Python 专题三 字符串的基础知识
在Python中,你可以使用字符串的 `strip()` 方法去除字符串两端的空格,或者使用 `replace()` 方法替换字符串中的空格。
下面是两种方法的示例代码:
1. 使用 `strip()` 方法去除字符串两端的空格:
```python
string = " Hello, World! "
stripped_string = string.strip()
print(stripped_string)
阅读全文