8 lines
159 B
Python
8 lines
159 B
Python
![]() |
class Shape:
|
||
|
def area():
|
||
|
pass
|
||
|
|
||
|
class Rectangle(Shape):
|
||
|
def __init__(self, width: int, height: int) -> None:
|
||
|
super().__init__()
|
||
|
|