写Python代码。如果这行包含空格加" Iteration Continuity X-momentum Y-momentum Z-momentum Energy"这些字,那么删除整行
时间: 2023-09-04 22:06:45 浏览: 66
删除文本空格-python
5星 · 资源好评率100%
可以使用以下代码实现:
```python
with open('file.txt', 'r') as f:
lines = f.readlines()
with open('file.txt', 'w') as f:
for line in lines:
if "Iteration Continuity X-momentum Y-momentum Z-momentum Energy" not in line:
f.write(line)
```
这段代码会打开一个名为 `file.txt` 的文本文件,逐行读取其中的内容。如果某行包含了指定的一些关键字,那么该行将被删除。最后,重新写入所有没有被删除的行。
阅读全文