Project 11: Point Distance Calculator
Scientific Computing
Builds on these lessons
Current Task
Objective
scipy.spatial handles geometric problems — distances, nearest neighbors, convex hulls — starting with the basic Euclidean distance between two points.
Task: compute the Euclidean distance between two points and print it.
index.py
from scipy.spatial.distance import euclidean
point_a = (0, 0)
point_b = (3, 4)
print(euclidean(point_a, point_b))
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview