Python 转置矩阵 发表于: 2023-08-12 更新于: 2024-09-07 字数: 9 阅读:≈ 1分钟transpose = lambda listA: list(list(t) for t in zip(*listA))