class rect:
    def __init__(self,length,width):
        self.wid = width
        self.len = length
    def rectArea(self):
        self.area = self.len*self.wid
        return self.



while True:
    l=float(input('What is the Length of Your Rectangle? '))
    w=float(input('What is the Width of Your Rectangle? '))
    myRect = rect(l,w)