python 去除空行
时间: 2023-11-03 11:01:27 浏览: 78
python 自动去除空行的实例
您可以使用以下代码来去除Python中的空行:
```python
def remove_empty_lines(file_path):
with open(file_path, 'r') as file:
lines = file.readlines()
non_empty_lines = [line for line in lines if line.strip()]
with open(file_path, 'w') as file:
file.writelines(non_empty_lines)
```
此代码将读取指定文件的内容,并删除其中的空行。它使用了列表推导式来过滤掉只包含空格或制表符的行,然后将结果重新写回原文件。
阅读全文