python读取文件指定行内容

import linecache
text=linecache.getline(r‘C:\Users\Administrator\Desktop\SourceCodeofMongoRedis\chapter_5\generate_string.py‘,10)
第十行内容为# info = ‘‘‘1000001 王小小‘‘‘

原文地址:https://www.cnblogs.com/tjp40922/p/12393080.html

时间: 2024-10-12 22:41:19

python读取文件指定行内容的相关文章

python读取文件指定行

import linecache file=open('3_2.txt','r') linecount=len(file.readlines()) linecache.getline('3_2.txt',linecount) 这样做的过程中发现一个问题,因为我的脚本是循环读取3_2.txt文件,当3_2.txt发生变化时,读到的内容不变化,看了一下linecache应该是缓存的问题,查资料后发现果然是这样,在用linecache之前清除一下缓存就好了linecache.clearcache().

python读取文件并写入内容到文件

读取文件内容: # 读取文件内容并按换行符切分 lines = open("data/voc01.txt", encoding="utf-8").read().split("\n") 写入文件: # 追加写入到指定文件 str = "abcd" with open('E:/test/test_en.txt', mode='a+', encoding="utf-8") as w: w.write(str +

python 读取文件指定某行

#encoding=utf-8   #从文件中读取某一行 linecache.checkcache可以刷新cache ,linecache可以缓存某一行的信息            import linecache    line = linecache.getline(r'1.txt', 2)   print line #如果文件比较大 使用下面 def getline(thefilepath,line_num):     if line_num < 1 :return ''     for 

获取txt文件指定行内容

#!/usr/bin/python num=0; ni=open("C:\Python34\ceshi.txt") for line in ni: num=num+1;  #表示行数 if num==4:  #当num为4时,打印出第四行的内容,在开始的编写中写成了num=4,运行时一直提示语法错误,找了半天原因才明白需写成==,=是赋值,==是比较   print(line) ni.close() #import linecache #print(linecache.getline(

Python 读取文件下所有内容、获取文件名、截取字符、写回文件

# coding=gbk import os import os.path   #读取目录下的所有文件,包括嵌套的文件夹 def GetFileList(dir, fileList): newDir = dir if os.path.isfile(dir): fileList.append(dir) elif os.path.isdir(dir): for s in os.listdir(dir): # 如果需要忽略某些文件夹,使用以下代码 # if s == "xxx": # con

python读取文件小结

python读取文件小结 你想通过python从文件中读取文本或数据. 一.最方便的方法是一次性读取文件中的所有内容并放置到一个大字符串中: all_the_text = open('thefile.txt').read( )     # 文本文件中的所有文本 all_the_data = open('abinfile','rb').read( )    # 二进制文件中的所有数据 为了安全起见,最好还是给打开的文件对象指定一个名字,这样在完成操作之后可以迅速关闭文件,防止一些无用的文件对象占用

Python读取文件的最后一行(非空行)

利用Python读取文件(针对大文件和小文件两种)的首行(第一行)和末行(最后一行).脚本借鉴了前人的两种处理思路(在下面的脚本中有注释说明引用出处),并修正了原先两种处理方法中如果文件末尾含有多个空行而返回空行的问题. 脚本内容可以从GitHub上获取: https://github.com/DingGuodong/LinuxBashShellScriptForOps/blob/master/functions/file/getFileLastLine.py 脚本内容如下: #!/usr/bi

解决Python读取文件时出现UnicodeDecodeError: &#39;gbk&#39; codec can&#39;t decode byte...

用Python在读取某个html文件时会遇到下面问题: 出问题的代码: 1 if __name__ == '__main__': 2 fileHandler = open('../report.html', mode='r') 3 4 report_lines = fileHandler.readlines() 5 for line in report_lines: 6 print(line.rstrip()) 修改方式是在open方法指定参数encoding='UTF-8': if __nam

Python读取文件

1.在Python中如何操作文件 2.如何读取大文件 文件内建函数:open(file_name,access_mode='r',buffering=-1),file() 文件访问模式:     r:以读方式打开(默认)     w:写     a:追加     b:以二进制方式打开     r+ w+ a+:读写方式打开     rb:以二进制读模式打开     wb:以二进制写模式打开     ab:以二进制追加模式打开 输入,输出 read() 读取给定数目个字节 readline() 读