이 기사는 Python의 관련 파일 처리 작업(코드 포함)에 대한 소개입니다. 도움이 필요한 친구들이 참고할 수 있기를 바랍니다.
open() 메소드
Python open() 메소드는 파일을 열고 파일 객체를 반환하는 데 사용됩니다. 파일을 열 수 없으면 OSError가 발생합니다.
참고: open() 메서드를 사용할 때는 파일 객체를 닫아야 합니다. 즉, close() 메서드를 호출하세요.
open() 함수의 일반적인 형태는 파일 이름(file)과 모드(mode)라는 두 가지 매개 변수를 받는 것입니다.
전체 구문 형식은 다음과 같습니다.
open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None) 参数说明: file: 必需,文件路径(相对或者绝对路径)。 mode: 可选,文件打开模式 buffering: 设置缓冲 encoding: 一般使用utf8 errors: 报错级别 newline: 区分换行符 closefd: 传入的file参数类型 opener:
>>> with open('F://lixu.txt','r') as f: ... print(f.read()) ... 大家好,我叫李*! >>> try: ... f = open('F://lixu.txt',mode='r') ... print(f.read()) ... finally: ... if f: ... f.close() ... 大家好,我叫李*!
def readData(self,datafile = None): """ read the data from the data file which is a data set """ self.datafile = datafile or self.datafile self.data = [] for line in open(self.datafile): userid,itemid,record,_ = line.split() self.data.append((userid,itemid,int(record)))
read()
read() 메서드는 파일에서 지정된 바이트 수를 읽는 데 사용됩니다. 제공되지 않거나 음수인 경우 모두 읽습니다.
>>> with open('F://lixu.txt','r') as f: ... print(f.read()) ... 大家好,我叫李*!
readline()
readline() 메서드는 "n" 문자를 포함하여 파일에서 전체 줄을 읽는 데 사용됩니다. 음수가 아닌 인수가 지정된 경우 "n" 문자를 포함하여 지정된 크기의 바이트 수를 반환합니다.
文件内容: 1:www.runoob.com 2:www.runoob.com 3:www.runoob.com 4:www.runoob.com 5:www.runoob.com # 打开文件 fo = open("runoob.txt", "rw+") print "文件名为: ", fo.name line = fo.readline() print "读取第一行 %s" % (line) line = fo.readline(5) print "读取的字符串为: %s" % (line) # 关闭文件 fo.close() 文件名为: runoob.txt 读取第一行 1:www.runoob.com 读取的字符串为: 2:www
readlines()
readlines() 메서드는 모든 줄(끝 문자 EOF까지)을 읽고 목록을 반환하는 데 사용됩니다. 이 목록은 Python의 for... in ... 구조로 처리할 수 있습니다.
끝 문자 EOF가 발견되면 빈 문자열이 반환됩니다.
def file2matrix(filename): """ 从文件中读入训练数据,并存储为矩阵 """ fr = open(filename) arrayOlines = fr.readlines() numberOfLines = len(arrayOlines) #获取 n=样本的行数 returnMat = zeros((numberOfLines,3)) #创建一个2维矩阵用于存放训练样本数据,一共有n行,每一行存放3个数据 classLabelVector = [] #创建一个1维数组用于存放训练样本标签。 index = 0 for line in arrayOlines: # 把回车符号给去掉 line = line.strip() # 把每一行数据用\t分割 listFromLine = line.split('\t') # 把分割好的数据放至数据集,其中index是该样本数据的下标,就是放到第几行 returnMat[index,:] = listFromLine[0:3] # 把该样本对应的标签放至标签集,顺序与样本集对应。 classLabelVector.append(int(listFromLine[-1])) index += 1 return returnMat,classLabelVector
차이
>>> f = open('F://lixu.txt',mode='r') >>> line2 = f.readline() >>> print(line2) 大家好,我叫李*! >>> f = open('F://lixu.txt',mode='r') >>> line = f.read() >>> print(line) 大家好,我叫李*! 啦啦啦 >>> f = open('F://lixu.txt',mode='r') >>> line = f.readlines() >>> print(line) ['大家好,我叫李*!\n', '\n', '啦啦啦\n', '\n', '\n']
위 내용은 Python의 파일 관련 처리 작업 소개(코드 포함)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!