我正在尝试创建具有不同维度的多列表的3维列表。
我尝试了以下
The dimension of the multi lists are
tmp1 50 x 1
tmp2 70 x 1
tmp3 92 x 1
tmp4 100 x 3
tmp5 234 x 3
tmp6 543 x 3
tmp7 3425 x 4
我从空列表开始,如下所示:
XY = [ [],[],[], [[]], [[]], [[]], [[]] ];
XY[0].append(tmp1);
XY[1].append(tmp2);
XY[2].append(tmp3);
XY[3].append(tmp4);
XY[4].append(tmp5);
XY[5].append(tmp6);
XY[6].append(tmp7);
这有效,但是有没有更优雅的方法,特别是当不知道多个列表的数目或其维数时?
关于多维列表的文章很多,但是没有一篇文章对我有帮助,因为我的个人列表的尺寸不同,我想放入3D列表中