Python List Comprehensions - Transposing

前端 未结 2 918
误落风尘
误落风尘 2021-01-23 12:45

I\'m just starting out with list comprehensions by the reading the matrix transposing tutorial here. I understand the example, but I\'m trying to figure out a way to transpose t

2条回答
  •  死守一世寂寞
    2021-01-23 13:40

    You can use another comprehension! They're a very powerful tool.

    [[row(i) for row in matrix] for i in range(max(len(r) for r in matrix))]
    

提交回复
热议问题