python关闭文件

打开文件后,需要关闭文件:f.close()

直接用语句with...as...就可以不用再添加close()方法:

with open(path,'w') as f:

  f.write(content)

with open(path,'r') as f:

  f.readlines()

posted @ 2017-04-18 17:49  水工  阅读(2614)  评论(0编辑  收藏  举报