我不断得到IndexError
一个列表。我的代码如下所示:
for x in range(len(MAIN_list[0])):
print(x)
print(MAIN_list[9][x])
print(MAIN_list[10][x])
print(MAIN_list[0][x] + "; " + MAIN_list[1][x] + \
"; " + MAIN_list[2][x] + "; " + MAIN_list[3][x] + \
"; " + MAIN_list[4][x] + "; " + MAIN_list[5][x] + \
"; " + MAIN_list[6][x] + "; " + MAIN_list[7][x] + \
"; " + MAIN_list[8][x] + "; " + MAIN_list[9][x] + \
"; " + MAIN_list[10][x])
现在,输出是:
0
cross
tick
Traceback (most recent call last):
File "C:\Users\Michele2\Desktop\Arcrate\MyCASH\Python Code\Scraping\Scraping1.3(clean)TEST.py", line 246, in <module>
"; " + MAIN_list[10][x])
IndexError: list index out of range
我知道对于列表实际长度之外的变量,您通常会收到此错误,但是在这里,当我单独调用它(即输出的第 3 行)时,我得到了正确的输出,但当我尝试打印列表时却没有作为一个整体。任何虽然都会受到欢迎。
谢谢