18 lines
207 B
Python
18 lines
207 B
Python
'''
|
|
Created on Apr 4, 2023
|
|
|
|
@author: ahypki
|
|
'''
|
|
|
|
class Area():
|
|
'''
|
|
classdocs
|
|
'''
|
|
|
|
def __init__(self):
|
|
'''
|
|
Constructor
|
|
'''
|
|
|
|
def compute_area(self):
|
|
pass |