摘要: 打开文件后,需要关闭文件: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 水工 阅读(2629) 评论(0) 推荐(0)