-
Notifications
You must be signed in to change notification settings - Fork 0
/
major.py
198 lines (111 loc) · 6.03 KB
/
major.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
from re import S
class Major():
def __init__(self,name,credits,nom,):
self.__name = name
self.__credits = credits
self.__name_of_major = nom
def set_name(self,name):
self.__name = name
def set_credits(self,credits):
self.__credits = credits
def set_name_of_major(self,nom):
self.__name_of_major = nom
def get_name(self):
return self.__name
def get_credits(self):
return self.__credits
def get_name_of_major(self,nom):
return self.__name_of_major
def Gretting(self):
print('You have five departments to choose from: \n Computer Science \n Civil Engineering \n Electrical and Computer Engineering \n Industrial and Systems Engineering \n Mechatronics! \n')
print('You are a', self.__name_of_major , 'major so lets go with that one. \n')
class computerscience(Major):
def _init__(self,name,credits,nom):
Major.__init__(self,name,credits,nom)
def show_faculty(self):
print(' Which faculty type would you like to contact?')
print(' 1-Department Chair \n 2-Professors \n 3-Assistant Professors \n 4-Associate Professors \n 5-Lectures \n 6-Staff')
def show_chair(self):
print('DEPARTMENT CHAIR: \n 1-Dr.Shuangbao "Paul" Wang')
def show_Professors(self):
print('DEPARTMENT PROFESSORS: \n 1-Dr.Mohamed Eltoweissy \n 2-Dr.Roshan Paudel')
def show_Assistant_Professors(self):
print('ASSITANT PROFESSORS: \n 1-Dr.Monireh Dabaghchian \n 2-Dr.Edward Dillon, Jr. \n 3-Dr.Monir Sharker \n 4-Dr.Naja Mack')
def show_Associate_Professors(self):
print('ASSOCIATE PROFESSORS: \n 1-Dr. Vojislav Stojkovic')
def show_lectures(self):
print('LECTURES: \n 1-Dr. Gholam Khaksari \n 2-Grace Steele \n 3-Dr. Sam Tannouri')
def show_staff(self):
print('STAFF: \n 1-Wendy Smith')
class civilengineering(Major):
def __init__(self,name,credits,nom):
Major.__init__(self,name,credits,nom)
def show_faculty(self):
print(' Which faculty type would you like to contact?')
print(' 1-Department Chair \n 2-N/A \n 3-Assistant Professors \n 4-Associate Professors \n 5-Lectures \n 6-Staff')
def show_chair(self):
print('DEPARTMENT CHAIR: \n 1-Dr.Jiang Li')
def show_Professors(self):
print('DEPARTMENT PROFESSORS: \n 1- N\A')
def show_Assistant_Professors(self):
print('ASSITANT PROFESSORS: \n 1-Oludare Owolabi \n 2-Dong Hee Kang \n 3-Mehdi Shokouhian \n 4-Steve Efe \n 5-Yi Liu')
def show_Associate_Professors(self):
print('ASSOCIATE PROFESSORS: \n 1-James Hunter Jr. \n 2-Gbekeloluwa Oguntimein')
def show_lectures(self):
print('LECTURES: \n 1-Kiruthika Saminathan \n 2-Cecelia Wright Brown \n 3-Emad Gheibi \n 4-Adewole Oladele')
def show_staff(self):
print('STAFF: \n 1-Vanessa Branch \n 2-Hye Jeong Lee \n 3-Samuel Kimani')
class electricalComputerengineering(Major):
def __init__(self,name,credits,nom):
Major.__init__(self,name,credits,nom)
def show_faculty(self):
print(' Which faculty type would you like to contact?')
print(' 1-Department Chair \n 2-Professors \n 3-Assistant Professors \n 4-Associate Professors \n 5-Lectures \n 6-N/A')
def show_chair(self):
print('DEPARTMENT CHAIR: \n 1-Ms.April Lopez')
def show_Professors(self):
print('DEPARTMENT PROFESSORS: \n 1-Dr.Arlene Cole-Rhodes \n 2-Dr.Kevin T.Kornegay \n 3-Dr.Craig J.Scott \n 4-Dr.Michael G.Spencer \n 5-Dr.Carl White \n 6-Dr. Gregory M. Wilkins')
def show_Assistant_Professors(self):
print('ASSITANT PROFESSORS: \n 1-Dr.Tanvir Arafin \n 2-Dr. Getachew Befekadu \n 3-Dr.Cliston Cole \n 4-Dr.Duane Harvey')
def show_Associate_Professors(self):
print('ASSOCIATE PROFESSORS: \n 1-Dr. Yacob Astatke \n 2-Dr. Kemi Ladeji-Osias \n 3-Dr.Onyema Osuagwu \n 4-Dr. Farzad Moazzami \n 5-Dr. Kofi Nyarko \n 6-Dr. Michel Reece \n 7-Dr.Ketchiozo Wandji')
def show_lectures(self):
print('LECTURES: \n 1-Dr.Deanna Bailey \n 2-Dr.Mulugeta Dugda \n 3-Mrs.LaDawn Partlow \n ')
def show_staff(self):
print('STAFF: \n 1-N/A')
class industrialsystemsengineering(Major):
def __init__(self,name,credits,nom):
Major.__init__(self,name,credits,nom)
def show_faculty(self):
print(' Which faculty type would you like to contact?')
print(' 1-Department Chair \n 2-Professors \n 3-Assistant Professors \n 4-Associate Professors \n 5-Lectures \n 6-N/A')
def show_chair(self):
print('DEPARTMENT CHAIR: \n 1-Dr. Tridip Bardhan')
def show_Professors(self):
print('DEPARTMENT PROFESSORS: \n 1-Dr.Guangming Chen \n 2-Dr.Seong W. Lee \n 3-Dr.Masud Salimian')
def show_Assistant_Professors(self):
print('ASSITANT PROFESSORS: \n 1-Dr. Jessye Bemley Talley \n 2-Mr. Yaseen Mahmud')
def show_Associate_Professors(self):
print('ASSOCIATE PROFESSORS: \n 1-Dr. LeeRoy Bronner')
def show_lectures(self):
print('LECTURES: \n 1-Dr. Kayenda Johnson \n 2-Dr. Garfield Jones \n 3-Dr. Wa Tshibangu')
def show_staff(self):
print('STAFF: \n 1-N/A')
class mechatronics(Major):
def __init__(self,name,credits,nom):
Major.__init__(self,name,credits,nom)
def show_faculty(self):
print(' Which faculty type would you like to contact?')
print(' 1-Department Chair \n 2-N/A \n 3-N/A \n 4-N/A \n 5-N/A \n 6-N/A')
def show_chair(self):
print('DEPARTMENT CHAIR: \n 1-Celeste Chavis')
def show_Professors(self):
print('DEPARTMENT PROFESSORS: \n N\A')
def show_Assistant_Professors(self):
print('ASSITANT PROFESSORS: \n N\A')
def show_Associate_Professors(self):
print('ASSOCIATE PROFESSORS: \n N\A')
def show_lectures(self):
print('LECTURES: \n N\A ')
def show_staff(self):
print('STAFF: \n 1-N/A')