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
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))]