好吧,我在 Python 脚本中有一个问题,我需要做的是拆分函数的索引随着循环的每次迭代而自动增加。我这样做:
tag = "\'"
while loop<=302:
for line in f1.readlines():
if tag in line:
word = line.split(tag)[num] #num is the index I need to increase
text = "Word: "+word+"."
f.write(text)
num = num + 1
loop = loop + 1
但是......索引上的“num”变量没有改变......它只是保持不变。num 索引表示我需要取的单词。所以这就是为什么“num = num + 1”必须增加......
循环中的问题是什么?
谢谢!