摘要: 一、读文件 1.简单的将文件读取到字符串中 f = open("/root/python/username.txt","r") #设置文件对象 str = f.read() #将txt文件的所有内容读入到字符串str中 f.close() #将文件关闭 2.按行读取整个文件 2.1、第一种方法 f 阅读全文
posted @ 2019-11-06 11:18 东方无解 阅读(198) 评论(0) 推荐(0) 编辑