pythonopenasfile
发布时间: 2025-01-11 01:17:06
‘壹’ python里的with open(file name) as file obj是什么意思
就是打开一个文件并声明变量file obj 接收打开后的文件对象,同时with语句块会在程序结束时候自动关闭打开的文件句柄,不会造成内存存泄露之后的问题
大概等效于
try:
file_obj = open(file_name)
#with里面你写的代码
except Exception:
raise Exception
finally:
if file_obj :
file_obj.close()
热点内容