diff --git a/SciPy Spatial/Problem 4/C.py b/SciPy Spatial/Problem 4/C.py new file mode 100644 index 0000000000000000000000000000000000000000..6fd4c6a43a61e6dbce4fc35a0474e39b8135bdc0 --- /dev/null +++ b/SciPy Spatial/Problem 4/C.py @@ -0,0 +1,5 @@ +from scipy.spatial.distance import euclidean +points_1 = (5, 5) +points_2 = (10, 10) +res = euclidean(points_1, points_2) ** 2 +print(res) \ No newline at end of file