Python 转置矩阵

transpose = lambda listA: list(list(t) for t in zip(*listA))