用python将选取的数据移动到另一个文件内
时间: 2024-05-15 13:16:46 浏览: 190
以下是将选取的数据从一个文件复制到另一个文件的Python代码示例:
```python
# 打开源文件和目标文件
with open('source_file.txt', 'r') as source, open('target_file.txt', 'w') as target:
# 逐行读取源文件
for line in source:
# 如果该行符合条件,就写入目标文件
if 'keyword' in line:
target.write(line)
```
上面的代码假设源文件名为`source_file.txt`,目标文件名为`target_file.txt`,并且要将包含关键字`keyword`的行复制到目标文件中。如果需要复制整个文件,可以直接使用`shutil`模块的`copy()`函数。例如:
```python
import shutil
# 复制文件
shutil.copy('source_file.txt', 'target_file.txt')
```
阅读全文