summary refs log tree commit diff
path: root/main/sandbox.py
diff options
context:
space:
mode:
Diffstat (limited to 'main/sandbox.py')
-rw-r--r--main/sandbox.py11
1 files changed, 11 insertions, 0 deletions
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)