gpt4 book ai didi

python - 如何在python中反转二维列表

转载 作者:行者123 更新时间:2023-12-03 19:07:46 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Transpose list of lists

(14 个回答)


8年前关闭。




我有一个像这样的二维列表:

   1   2   3

4 5 6

我想做这个:
   1   4

2 5

3 6

我试图做一个 for 循环并切换每个值,但我不断得到一个索引超出范围的错误。这是我所拥有的:
for i in results:
for j in range(numCenturies):
rotated[i][j] = results [j][i]

最佳答案

http://docs.scipy.org/doc/numpy/reference/generated/numpy.transpose.html

>>> from numpy import transpose
>>> transpose([[1,2,3],[4,5,6]])
array([[1, 4],
[2, 5],
[3, 6]])

关于python - 如何在python中反转二维列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20279127/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com