diff --git a/homework_02_numpy_matplotlib/2.5.text b/homework_02_numpy_matplotlib/2.5.text new file mode 100644 index 0000000000000000000000000000000000000000..4e5e1552ba07856d46d37f2c0454b99b21a9d9c2 --- /dev/null +++ b/homework_02_numpy_matplotlib/2.5.text @@ -0,0 +1,4 @@ +import numpy as np +a = np.array(([1, 2, 3], [4, 5, 6], [7, 8, 9])) +a[::1,::-1] = a[::-1] +print(a)