Python:将一个维列表转换为没有numpy的2维度
因此,我想将一个昏暗列表转换为2个昏暗的列表: 第一个列表的lenght为n²。第二个必须是n*n。如果没有numpy,该怎么做? 提前致谢
So, i want to convert a one dim list into a 2 dim one :
The first list have a lenght of n² . The second one must be n*n. How to do that without numpy ?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有很多方法可以根据计数顺序将平面列表组织到“正方形”嵌套列表中。这里最自然的示例:
备注:假定列表具有
n ** 2
元素,如该问题中所述There are many ways to organize a flat list into a "square" nested list depending on the counting order. Here the most natural example:
Remark: the list is assumed to have
n**2
elements as mentioned in the question otherwise add a conditional check with a proper exception handler