mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 12:10:40 +02:00
6 lines
72 B
Python
6 lines
72 B
Python
import numpy as np
|
|
|
|
a = np.arange(1, 21)
|
|
a = a.reshape(4, 5)
|
|
print(a.T)
|