Python将一段话中的标点替换成空格、
时间: 2024-04-28 10:03:29 浏览: 205
python 实现图像快速替换某种颜色
5星 · 资源好评率100%
可以使用Python中的字符串替换函数(replace),代码如下:
```python
text = "Hello, World! This is a sentence."
clean_text = text.replace(",", " ").replace(".", " ").replace("!", " ") # 将逗号、句号、感叹号都替换成空格
print(clean_text)
```
输出结果为:
```
Hello World This is a sentence
```
阅读全文