Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Python 中的矩阵转置
我有一个矩阵,比如说
A = [[0,0],[1,1]]
我想压缩它的组件
(0,1),(0,1)
在 A 中有两行,这可以很容易地获得
zip(A[0],A[1])
如果我有一个任意维度的矩阵 A
A = [[0,0],[1,1],[2,2]]
如何压缩一系列元素?
谢谢你的想法。
使用zip(*A).
zip(*A)
>>> zip(*A) [(0, 1, 2), (0, 1, 2)]