-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShape.py
37 lines (31 loc) · 901 Bytes
/
Shape.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""Python CMD program, object-oriented shape class and subclasses, enter the shape's name, color and other attributes
to construct them and calculate the area and perimeter.
using Python version 3.11.4
@version : 1.0
@license: MIT License
@author : Arman Azarnik
contact me at : [email protected]
"""
from abc import abstractmethod
class Shape():
"""
Shape class, the parent of other geometric shape classes.
"""
count = 0
def __init__(self, color = None):
self.set_color(color)
Shape.count += 1
@abstractmethod
def __del__(self):
Shape.count -=1
@abstractmethod
def get_shape(self):
return "shape"
@abstractmethod
def get_color(self):
return self.color
@abstractmethod
def set_color(self, color = None):
if color is None:
color = "nocolor"
self.color = color