Transpose matrix
This commit is contained in:
committed by
GitHub
parent
14c41e7885
commit
84ad5f87fc
10
snippets/transpose.md
Normal file
10
snippets/transpose.md
Normal 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)]
|
||||
```
|
||||
Reference in New Issue
Block a user