为什么我会收到此 "list index out of range" 错误?
Why am I getting this "list index out of range" error?
def numline(name)
returns 文本文件中的行数
def anyLine(name,n)
returns 文本文件的任何一行,每一行(在我的文本文件中)都有三个制表符 ('\t')
如果我 运行 没有循环的程序,我得到了我想要的答案,但是当我使用 for 循环时,我总是得到错误
(dictConcepts[a_string[0], a_string[2].rstrip('\n')] = a_string[1]
IndexError: list index out of range)
这是我的代码:
def main(name):
for i in range(0, numLine(name)):
a_string = anyLine(name, i).split('\t')
dictConcepts[a_string[0], a_string[2].rstrip('\n')] = a_string[1]
for key in dictConcepts:
print(key, ':', dictConcepts[key])
现在,如果:
a_string = anyLine(name, i).split('\t')
不会生成长度至少为三的列表(即 \t
在行中出现两次)您的代码将因索引错误而失败。
您可以编写 try
/except
,这样您就不会索引不存在的内容:
a_string = anyLine(name, i).split('\t')
try:
dictConcepts[a_string[0], a_string[2].rstrip('\n')] = a_string[1]
except IndexError:
print('something is not right here')
def numline(name)
returns 文本文件中的行数
def anyLine(name,n)
returns 文本文件的任何一行,每一行(在我的文本文件中)都有三个制表符 ('\t')
如果我 运行 没有循环的程序,我得到了我想要的答案,但是当我使用 for 循环时,我总是得到错误
(dictConcepts[a_string[0], a_string[2].rstrip('\n')] = a_string[1]
IndexError: list index out of range)
这是我的代码:
def main(name):
for i in range(0, numLine(name)):
a_string = anyLine(name, i).split('\t')
dictConcepts[a_string[0], a_string[2].rstrip('\n')] = a_string[1]
for key in dictConcepts:
print(key, ':', dictConcepts[key])
现在,如果:
a_string = anyLine(name, i).split('\t')
不会生成长度至少为三的列表(即 \t
在行中出现两次)您的代码将因索引错误而失败。
您可以编写 try
/except
,这样您就不会索引不存在的内容:
a_string = anyLine(name, i).split('\t')
try:
dictConcepts[a_string[0], a_string[2].rstrip('\n')] = a_string[1]
except IndexError:
print('something is not right here')