Question: Create a new class called Point that represents a point in the Cartesian plane with two coordinates. Each instance of Point should have two coordinates
Create a new class called Point that represents a point in the Cartesian plane with two coordinates. Each instance of Point should have two coordinates called x and y. The constructor for Point should take two arguments x and y that represent the two coordinates of the newly created point. Your class Point should override the __str__(self) method so that it returns a string showing the x- and y- coordinates of the Point enclosed in parenthesses and seperated by a comma. Your class Point should override the __repr__(self) method so that it returns a string that contains a Python code that would produce an instance of the same point. Your class Point should override the __eq__(self, other) method so that it returns True if and only if other is also a Point that has the same x- and y- corrdinate as self.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
