我在python代码中收到“IndexError:list index out of range”消息

时间:2017-03-25 09:25:18

标签: python

关于输入和预期输出,我的问题很简短。

Input
######
a = [[1,2,3],[10,20,30],[4,5,6],[40,50,60],[1,2,3],[11,22,33],[4,5,6],[44,55,66]]

Output
#######
1,10,11
2,20,22
3,30,33
4,40,44
5,50,55
6,60,66

1 个答案:

答案 0 :(得分:0)

http://localhost:8085/usermanodd_list最多只有even_list元素数量的一半。因此,当您使用raw_array进行迭代时,您会收到错误。

我不确定我的方案是否正确,但最后嵌套的for循环对我来说没什么意义。

counter in range(len(raw_array))重复内容之后的第二个for循环。