创建文件 Demo1.txt 写入文本 hello * 创建文件 Demo2.txt 写入文本 Neuedu 将两个文件内容 提取出来输出到 第三个文件 Test.txt 通过文件与流方式实现
时间: 2024-02-25 07:57:23 浏览: 3167
打开一个文件,把它的内容输出到另一个文件中.
好的,我已经明白了您的问题。您可以使用以下代码来实现:
```python
# 打开文件 Demo1.txt 并写入 hello
with open('Demo1.txt', mode='w') as file1:
file1.write('hello')
# 打开文件 Demo2.txt 并写入 Neuedu
with open('Demo2.txt', mode='w') as file2:
file2.write('Neuedu')
# 打开文件 Demo1.txt 并读取内容
with open('Demo1.txt', mode='r') as file1:
content1 = file1.read()
# 打开文件 Demo2.txt 并读取内容
with open('Demo2.txt', mode='r') as file2:
content2 = file2.read()
# 将两个文件的内容合并
content3 = content1 + ' ' + content2
# 打开文件 Test.txt 并写入合并后的内容
with open('Test.txt', mode='w') as file3:
file3.write(content3)
# 打开文件 Test.txt 并读取内容
with open('Test.txt', mode='r') as file3:
content4 = file3.read()
# 输出合并后的内容
print(content4)
```
这段代码会创建 Demo1.txt 和 Demo2.txt 两个文件,并在其中分别写入 hello 和 Neuedu。然后,代码会打开 Demo1.txt 和 Demo2.txt 文件,并读取它们的内容。接下来,代码将两个文件的内容合并,并将合并后的内容写入 Test.txt 文件中。最后,代码会打开 Test.txt 文件,并读取其中的内容,最终输出合并后的内容。
这是通过文件与流方式实现的。如果您有任何疑问,请随时向我提问。
阅读全文