hnc-eduard/HNS/Excercises/13082023 ДЗ по фигурам JSON/rectangle.py

18 lines
319 B
Python
Raw Normal View History

from shape import Shape
class Rectangle(Shape):
def __init__(self, width, height):
self.width = width
self.height = height
def area(self):
return self.width * self.height
def perimetr(self):
return (self.width + self.height) * 2
r1 = Rectangle(10, 20)
print(r1.area())