file.open(name[,mode[,buffering]]) 模式的类型有: r 默认只读 w 以写方式打开,如果文件不存在则会先创建,如果文件存在则先把文件内容清空(truncate the file first)a 以追加模式打开 (从 EOF 开始, 必要时创建新文件)用seek也无用.打开的文件也是不能读的.r+ 以读写模式打开,如果文件不存在则报错,文件可读可写,可写到文件的任何位置w+ 以读写模式打开 (参见 w ),和r+不同的是,它会trun
本次实验的文件是一个60M的文件,共计392660行内容. 程序一: def one(): start = time.clock() fo = open(file,'r') fc = fo.readlines() num = 0 for l in fc: tup = l.rstrip('\n').rstrip().split('\t') num = num+1 fo.close() end = time.clock() print end-start print num 运行结果:0.81214
监控文件a,如有新内容写入,即时将新内容写入到新文件aa中: fw=open('e:\\aa.txt','ab') with open('e:\\a.txt','rb') as fo: while True: line = fo.readline() if line: fw.write(line) fw.flush() #即时将文件写入到磁盘 else: time.sleep(1) fo.seek(0,1) #1代表当前位置,0表示移动off个操作标记 fw.close() file.seek(