4 lines
109 B
Python
4 lines
109 B
Python
class Balcony:
|
|
def __init__(self, length, width):
|
|
self.length = length
|
|
self.width = width |