Point objects have x and y attributes (X and Y in C#) attributes. Write a function calculating distance between Point a and Point b. Tests round answers to 6 decimal places.
import math class Point: def __init__(self, x, y): self.x = x self.y = y def distance(a, b): return round(math.sqrt((b.x - a.x)**2 + (b.y - a.y)**2), 6)