dotfiles/.config/Code/User/History/5b46c3f1/tnFd.py
RafayAhmad7548 4f46de8d00 update
2024-09-09 16:59:28 +05:00

12 lines
No EOL
278 B
Python

class Shape:
def area():
pass
class Rectangle(Shape):
def __init__(self, width: int, height: int) -> None:
super().__init__()
self.width = width
self.height = height
def area(self) -> int:
return self.width * self.height