摘要: ##1.简单的将文件读取到字符串中 ``` f = open("data.txt","r") #设置文件对象 str = f.read() #将txt文件的所有内容读入到字符串str中 f.close() #将文件关闭 ``` ##2.按行读取整个文件 ###第一种方法 ``` f = open(" 阅读全文
posted @ 2023-07-17 09:57 DuJunlong 阅读(2666) 评论(0) 推荐(0) 编辑