摘要: 时间:2018-11-22 整理:byzqy python读写文本文件 1 # -*- coding: utf-8 -*- 2 3 def read_file(file): 4 with open(file, 'r') as f: 5 print(f.read()) 6 f.close() 7 8 阅读全文
posted @ 2018-11-22 11:31 菊次郎的秋天 阅读(295) 评论(0) 推荐(0) 编辑