Challenge 4: Implement a Print Method
In this exercise, you will modify the rectangle class such that the print method actually prints values instead of addresses.
We'll cover the following...
Problem Statement
Implement a function in the Rectangle class __str__
method, such that when you print one of the objects using the print()
command, it prints the coordinates as ...