pip install Opps
python
from Opps import Opps
class Rectangle(Opps):
def __init__(self, width, height):
self.width = width
self.height = height
def calculate_area(self):
return self.width * self.height
rect = Rectangle(5, 3)
area = rect.calculate_area()