Transpose matrix

This commit is contained in:
Adán Hernández Baena
2019-10-01 23:03:20 -05:00
committed by GitHub
parent 14c41e7885
commit 84ad5f87fc

10
snippets/transpose.md Normal file
View File

@ -0,0 +1,10 @@
## Make a transpose matrix
```python
def transpose(l):
return list(zip(*l))
l = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]]
print(transpose(l))
# Output: [(1, 4, 7, 10), (2, 5, 8, 11), (3, 6, 9, 12)]
```