gpt4 book ai didi

python,打开的文件会被关闭吗?

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

<分区>

Possible Duplicate:
Does filehandle get closed automatically in Python after it goes out of scope?

我是 python 新手。我知道如果你打开一个文件并写入它,你需要在最后关闭它。

in_file = open(from_file)
indata = in_file.read()

out_file = open(to_file, 'w')
out_file.write(indata)

out_file.close()
in_file.close()

如果我这样写我的代码。

open(to_file, 'w').write(open(from_file).read())

真的不能关闭,会自动关闭吗?

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