hnc-vitalii/HNS/Excercises/Json/Rectangle.py

14 lines
278 B
Python
Raw Normal View History

2023-09-12 19:17:10 +02:00
from Shape import Shape
class Rectangle(Shape):
def __init__(self, width, height):
self.width = width
self.height = height
def perimeter(self):
return 2 * (self.width + self.height)
def area(self):
return self.width * self.height