摘要: Python实现文件的操作: 读写一个文件之前需要打开它: fileobj = open(filename, mode) open()调用参数的解释: * fileobj是open()返回的文件对象; * filename是该文件的字符串名; * mode是指明文件类型和操作的字符串 mode : 阅读全文
posted @ 2017-09-17 23:15 helloworld899 阅读(7753) 评论(0) 推荐(0) 编辑