(不用操作光标)Python读取文件指定行内容

Python读取文件指定行内容

 python读取文件指定行内容

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

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

你可能感兴趣的:(Python,读取文件指定行,文件读取,python)