Write the exact outcome of the following code. class Poi…

Write the exact outcome of the following code. class Point(object):     def __init__(self, x, y):         self.x = x         self.y = y             def equal(self, other):         if self.x == other.x and self.y == other.y:             return True         else:             return False p1 = Point(4,2) p2 = Point(4,10) print(p1.equal(p2)) #outcome of this line