文本合并Python代码
时间: 2023-11-19 07:12:00 浏览: 121
python实现文本文件合并
下面是一个简单的 Python 代码示例,可以将两个文本文件合并为一个文件:
```python
def merge_files(file1, file2, output_file):
with open(file1, 'r') as f1, open(file2, 'r') as f2, open(output_file, 'w') as out:
out.write(f1.read())
out.write(f2.read())
```
这个函数接受三个参数:file1 和 file2 是要合并的两个文件的文件名,output_file 是输出文件的文件名。函数将 file1 和 file2 的内容读取出来,并将它们写入到 output_file 中。
例如,我们可以使用以下代码将两个文本文件 file1.txt 和 file2.txt 合并为一个名为 merged.txt 的文件:
```python
merge_files('file1.txt', 'file2.txt', 'merged.txt')
```
阅读全文