python在一个文件中删除指定单词后复制到另一个文件
时间: 2023-12-07 14:04:31 浏览: 203
python实现复制文件到指定目录
5星 · 资源好评率100%
可以使用Python的文件读写功能来完成这个任务。具体步骤如下:
1. 打开要读取的文件和要写入的文件:
```python
with open('file1.txt', 'r') as f1, open('file2.txt', 'w') as f2:
```
2. 遍历要读取的文件的每一行,删除指定单词后写入要写入的文件:
```python
for line in f1:
new_line = line.replace('指定单词', '')
f2.write(new_line)
```
3. 关闭文件:
```python
f1.close()
f2.close()
```
完整的代码如下:
```python
with open('file1.txt', 'r') as f1, open('file2.txt', 'w') as f2:
for line in f1:
new_line = line.replace('指定单词', '')
f2.write(new_line)
f1.close()
f2.close()
```
其中,'file1.txt'是要读取的文件,'file2.txt'是要写入的文件,'指定单词'是要删除的单词。你可以根据实际需求修改这些参数。
阅读全文