I came across the following code:
l = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] list(map(lambda *a: list(a), *l))
which returns: [[1, 4, 7], [2, 5
[[1, 4, 7], [2, 5