diff options
Diffstat (limited to 'sandbox.py')
-rw-r--r-- | sandbox.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sandbox.py b/sandbox.py deleted file mode 100644 index 262caf8..0000000 --- a/sandbox.py +++ /dev/null @@ -1,11 +0,0 @@ -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) |