摘要: <!doctype html> python文件操作 打开文件 xxxxxxxxxx fp = open("file","mode") ​ #注意打开文件后 要关闭文件 fp.close() #可以使用 with函数 来自动调用 close函数 with open("file","mode") as 阅读全文
posted @ 2018-07-24 16:26 Echonana 阅读(208) 评论(0) 推荐(0) 编辑