So my assignment is asking for rectangle class with default values of 1 and 1 for width and height. It wants a non argument constructor and another constructor to create a rectangle with user specified height and width. So for the default i have
class Rectangle:
def __init__(self, height = 1, width = 1):
self.height = height
self.width = width
but what does it mean by "create a rectangle with user specified height and width"