From 5df473f352035c6382b3b4484a4e3f84447f94b8 Mon Sep 17 00:00:00 2001 From: HanEmile Date: Wed, 25 Jan 2017 21:43:17 +0100 Subject: added more files --- sandbox.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sandbox.py (limited to 'sandbox.py') diff --git a/sandbox.py b/sandbox.py new file mode 100644 index 0000000..262caf8 --- /dev/null +++ b/sandbox.py @@ -0,0 +1,11 @@ +import numpy as np +size = 10 + +x = np.array([range(1, size), range(1, size)]) +print(x) + +print("") + +y = np.zeros((10, 10)) +y[2, 3] = 5 +print(y) -- cgit 1.4.1