Python:将一个维列表转换为没有numpy的2维度

发布于 2025-01-23 13:45:27 字数 77 浏览 0 评论 0原文

因此,我想将一个昏暗列表转换为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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苹果你个爱泡泡 2025-01-30 13:45:27

有很多方法可以根据计数顺序将平面列表组织到“正方形”嵌套列表中。这里最自然的示例:

flat_list = list(range(16))

dim = int(len(flat_list)**.5)

square_list = [flat_list[dim*i: dim*(i+1)] for i in range(dim)]

print(square_list)
# [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11], [12, 13, 14, 15]]

备注:假定列表具有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:

flat_list = list(range(16))

dim = int(len(flat_list)**.5)

square_list = [flat_list[dim*i: dim*(i+1)] for i in range(dim)]

print(square_list)
# [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11], [12, 13, 14, 15]]

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文