From 72914a15df7525c6aa343864b4ac0fe125753a3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=AD=E6=97=A5=E4=B8=9C=E5=8D=87?= <8113091+xrdspxd@user.noreply.gitee.com> Date: Mon, 19 Oct 2020 14:35:49 +0800 Subject: [PATCH] add homework_02_numpy_matplotlib/2.5.text. --- homework_02_numpy_matplotlib/2.5.text | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 homework_02_numpy_matplotlib/2.5.text diff --git a/homework_02_numpy_matplotlib/2.5.text b/homework_02_numpy_matplotlib/2.5.text new file mode 100644 index 0000000..4e5e155 --- /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) -- Gitee