This commit is contained in:
Franciszek Kornobis 2024-01-14 20:02:34 +01:00
commit 9a4fffbbd4
4 changed files with 16 additions and 1 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
venv/
__pycache__/
*.pyc
*.pyo
*.pyd
.DS_Store

View File

@ -0,0 +1,4 @@
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python script.py

View File

@ -1,4 +1,9 @@
import numpy as np
print(np.eye(3))
print("Hello world")
<<<<<<< HEAD
print("Hello world")
=======
print(np.eye(4))
print(np.eye(5))
>>>>>>> d4c78e1110aad09c79e474f060e7b9f7cd97470b

0
test.py Normal file
View File