摘要: 文件写入 def storFile(data,fileName,method='a'): with open(fileName,method,newline ='') as f: f.write(data) pass pass storFile('123', '1.txt') 文件读取 with o 阅读全文
posted @ 2019-06-01 19:05 大浪淘沙、 阅读(283) 评论(0) 推荐(0)