Files
2026-05-26 15:01:50 +02:00

6 lines
72 B
Python

import numpy as np
a = np.arange(1, 21)
a = a.reshape(4, 5)
print(a.T)