python3 替换空格
时间: 2024-01-27 16:15:15 浏览: 148
python3字符串操作总结
在Python 3中,你可以使用多种方法来替换字符串中的空格。以下是两种常见的方法:
1. 使用replace()方法替换空格:
```python
str = "this is string example!!!"
new_str = str.replace(" ", "") # 将空格替换为空字符串
print(new_str) # 输出:thisisstringexample!!!
```
2. 使用join()方法和split()方法去除全部空格:
```python
str = "this is string example!!!"
new_str = "".join(str.split()) # 将字符串按空格分割后再用空字符串连接
print(new_str) # 输出:thisisstringexample!!!
```
这两种方法都可以实现替换字符串中的空格,你可以根据具体需求选择其中一种方法。
阅读全文