关于输入和预期输出,我的问题很简短。
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
答案 0 :(得分:0)
http://localhost:8085/userman
和odd_list
最多只有even_list
元素数量的一半。因此,当您使用raw_array
进行迭代时,您会收到错误。
我不确定我的方案是否正确,但最后嵌套的for循环对我来说没什么意义。
counter in range(len(raw_array))
重复内容之后的第二个for
循环。