پاسخ ها (1)
2
ماجراجو
class rect:
def __init__(self,width,height): #constructor with width and height parameters and a function for calculating area.
self.width = width
self.height = height
def getArea(self): #function to calculate the area of rectangle.
return (self.width * self.height)
def getPerimeter(self): #function to calculate the perimeter of rectangle .
return ((2*self.width) + (2*self.height))
برای قسمت اول سوالتون می تونید از کد بالا استفاده کنید.
پاسخ به سوال