借助linecache.getline()
方法,我們可以通過提供行號來獲取特定行,此方法的用例之一是通過使用以下命令在大文件中查找給定行號中的語法錯誤linecache.getline()
方法。
用法:linecache.getline(filename, lineno)
返回: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)
輸出:
相關用法
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 linecache.getline() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。