打开文件后,需要关闭文件:f.close()
直接用语句with...as...就可以不用再添加close()方法:
with open(path,'w') as f:
f.write(content)
with open(path,'r') as f:
f.readlines()
打开文件后,需要关闭文件:f.close()
直接用语句with...as...就可以不用再添加close()方法:
with open(path,'w') as f:
f.write(content)
with open(path,'r') as f:
f.readlines()
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。