Python中的 linecache.getline()
借助linecache.getline()
方法,我们可以通过提供行号来获取特定行,该方法的用例之一是使用linecache.getline()
在大文件中查找给定行号中的语法错误linecache.getline()
方法。
Syntax : linecache.getline(filename, lineno)
Return : Return the content of given line number.
输入文件 :
示例 #1:
在这个例子中,我们可以看到,通过使用linecache.getline()
方法,我们可以使用这个方法从一个大文件中获取给定行的内容。
# import linecache
import linecache as lc
# Using linecache.getline() method
gfg = lc.getline('File.txt', 1)
print(gfg)
输出 :
示例 #2:
# import linecache
import linecache as lc
# Using linecache.getline() method
gfg = lc.getline('File.txt', 2)
print(gfg)
输出 :
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。