pathon 编写一个函数,向函数传递两个文件名,将第二个文件中的内容追加到第一个文件中。
时间: 2023-05-21 20:03:35 浏览: 223
pathon for windows
可以使用以下代码实现:
```python
def append_file(file1, file2):
with open(file1, 'a') as f1, open(file2, 'r') as f2:
f1.write(f2.read())
```
其中,`file1` 是第一个文件的文件名,`file2` 是第二个文件的文件名。使用 `with open()` 语句打开两个文件,然后将第二个文件的内容读取出来并追加到第一个文件中。最后,`with` 语句会自动关闭文件。
阅读全文