diff --git a/__pycache__/lec3_module1.cpython-312.pyc b/__pycache__/lec3_module1.cpython-312.pyc new file mode 100644 index 000000000..246cff9b0 Binary files /dev/null and b/__pycache__/lec3_module1.cpython-312.pyc differ diff --git a/import_test.py b/import_test.py new file mode 100644 index 000000000..fb92b3c16 --- /dev/null +++ b/import_test.py @@ -0,0 +1,2 @@ +import lec3_module1 +print(lec3_module1.a) \ No newline at end of file diff --git a/lec3_module1.py b/lec3_module1.py new file mode 100644 index 000000000..7d4025281 --- /dev/null +++ b/lec3_module1.py @@ -0,0 +1,2 @@ +#это будет имба модуль +a = 3 \ No newline at end of file diff --git a/mumpy.py b/mumpy.py new file mode 100644 index 000000000..f326af3c7 --- /dev/null +++ b/mumpy.py @@ -0,0 +1,12 @@ +import numpy as np + +a = np.zeros((2,3)) +print(a) + +b = np.ndarray((3,3)) +print(b) + +c = np.arange(0,5,0.1) +print(c) + +d = np.array([a,np.array(a)*3]) \ No newline at end of file