gpt4 book ai didi

python - 将文件粘贴到 python 中的新文件中

转载 作者:行者123 更新时间:2023-11-30 22:28:13 26 4
gpt4 key购买 nike

有没有办法只打开/创建filehandle = open("example.bin", "wb")并使用现有文件扩展此文件?

我想到类似 .extend from 列表函数的东西就像这样:

filehandle = open( "example.bin", "wb")
filehande.extend(existing_file.bin)

我知道我可以读取现有文件并将其写入变量/列表并将其“粘贴”到新文件中,但我很好奇是否有像这样更简单的选项...

最佳答案

with open('original', 'a') as out_file, open('other', 'r') as ins_file:
out_file.write(ins_file.read())

这会将other 的内容附加到original 上。如果您正在处理二进制数据,则可以将每个数据的模式更改为 abrb

如果文件内容很大,您可以 do it in chunks也是。

关于python - 将文件粘贴到 python 中的新文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46681793/

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