摘要: Python读文件 方法一:open()创建文件对象 .read()方法读文件 .close()关闭文件对象 file_object = open("2.txt") #open()创建文件对象 contents = file_object.readlines() print(contents) fi 阅读全文
posted @ 2020-03-20 16:40 傅余生 阅读(184) 评论(0) 推荐(0) 编辑