diff --git a/.gitignore b/.gitignore index e69de29..f108d6d 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,5 @@ +* + +!*.py + +!*.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3970c40 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ + python -m venv venv +#### + venv\Scripts\activate +#### + python script.py \ No newline at end of file diff --git a/script.py b/script.py index e69de29..d61e5e0 100644 --- a/script.py +++ b/script.py @@ -0,0 +1,3 @@ +import numpy as np + +print(np.eye(3)) \ No newline at end of file