From 552a3922321bfdc6e71d55dea334d5ef864cc440 Mon Sep 17 00:00:00 2001 From: HanEmile Date: Tue, 14 Feb 2017 17:02:22 +0100 Subject: added branch -> restructure --- main/sandbox.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 main/sandbox.py (limited to 'main/sandbox.py') diff --git a/main/sandbox.py b/main/sandbox.py new file mode 100644 index 0000000..262caf8 --- /dev/null +++ b/main/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