1
我處理文件一行行Python中,行迭代器
for line in mix_files[i]:
if my_string in line:
use the next line # How to get the next line
包含文本行被發現後,我需要與下一行工作。有沒有簡單的路怎麼走下一行(例如,增量迭代器),而不是更少的舒適的方法:
get line number -> increment line number -> use the next line
感謝您的幫助。
只有'mix_files [I]'是一個序列;如果它是一個文件對象,這將無法工作。 –