这是我得到的错误
word[i] += len(words)
IndexError: list index out of range
这是代码
word=[]
i=1
with open("poem.txt", "r") as f:
for line in f:
words=line.split()
word[i] += len(words)
i += 1
for i in range(1,20):
print("For the line "+i+" we have "+word[i]+" words")
我想要作为输出的东西是这样的
对于第 1 行,我们有 10 个单词
对于第 2 行,我们有 20 个单词
等等 ...
30秒到达战场
冉冉说
相关分类