python用空行代替标点符号
时间: 2023-07-12 07:41:08 浏览: 112
如果您想要使用空行代替标点符号,可以使用 `replace()` 方法将标点符号替换为空行。以下是示例代码:
```python
with open('your_file.txt', 'r') as f:
text = f.read()
text = text.replace('.', '\n\n').replace(',', '\n\n').replace(';', '\n\n').replace(':', '\n\n')
print(text)
```
其中,`your_file.txt` 是您要读取的文件名。`with open()` 语句用于打开文件,并将文件内容读取至 `text` 变量中。然后,使用 `replace()` 方法将句号、逗号、分号和冒号替换为空行,最后输出替换后的文本。您可以根据需要添加或删除其他标点符号。
阅读全文