-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactory_design_pattern.py
45 lines (31 loc) · 1.15 KB
/
factory_design_pattern.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
38
39
40
41
42
43
44
45
# The Factory Method design pattern offers a systematic way to create objects
# while keeping code maintainable and adaptable.
from abc import ABCMeta, abstractmethod # abc - abstract class
# Instance of this class cannot be created without an implementation for abstract method
class IPerson(metaclass=ABCMeta):
@abstractmethod
def person_method(self):
""" Interface Method """
class Student(IPerson):
def __init__(self):
self.name = "Basic Student Info"
def person_method(self):
print("I'm a Student.")
class Teacher(IPerson):
def __init__(self):
self.name = "Basic Teacher Info"
def person_method(self):
print("I'm a Teacher.")
class PersonFactory:
@staticmethod
def build_person(person_type):
if person_type == "Student":
return Student()
elif person_type == "Teacher":
return Teacher()
else:
print("Invalid Type!")
if __name__ == "__main__":
choice = input("Are you a Student or a Teacher? ")
person = PersonFactory.build_person(choice)
print(person.person_method())