我有一個從.html文件中提取一些文本的小腳本。Python 3.x:移動到下一行
f = open(local_file,"r")
for line in f:
searchphrase = '<span class="position'
if searchphrase in line:
print("found it\n")
這對我來說工作正常(錯誤處理將在稍後導入),我的問題是,我想提取文本遵循searchphrase後2行。如何在.html文件中向下移動兩行?
Thx你。偉大的作品:) – SaintCore 2013-03-27 12:14:28