gpt4 book ai didi

python - 使用 Python 3 将一个文件的内容复制到另一个文件中

转载 作者:太空宇宙 更新时间:2023-11-04 06:46:52 24 4
gpt4 key购买 nike

我写了下面的一段代码,目的是将 abc.txt 的内容复制到另一个文件 xyz.txt

但是声明 b_file.write(a_file.read()) 似乎没有按预期工作。如果我用一些字符串替换 a_file.read(),它(字符串)就会被打印出来。

import locale
with open('/home/chirag/abc.txt','r', encoding = locale.getpreferredencoding()) as a_file:
print(a_file.read())
print(a_file.closed)

with open('/home/chirag/xyz.txt','w', encoding = locale.getpreferredencoding()) as b_file:
b_file.write(a_file.read())

with open('/home/chirag/xyz.txt','r', encoding = locale.getpreferredencoding()) as b_file:
print(b_file.read())

我该怎么做?

最佳答案

您正在寻找 shutil.copyfileobj() .

关于python - 使用 Python 3 将一个文件的内容复制到另一个文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14790519/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com