-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathstudent.py
31 lines (22 loc) · 828 Bytes
/
student.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
class Course:
def __init__(self, course_id, unit, tuition):
self.course_id = course_id
self.unit = unit
self.tuition = tuition
class Student:
def __init__(self, firstname, lastname, dob, course_list):
self.firstname = firstname
self.lastname = lastname
self.dob = dob
self.course_list = course_list
def generate_email(self, uni_domain):
return self.firstname + "." + self.lastname + "@" + uni_domain
def paid_tuition(self):
tuition = 0
for course in self.course_list:
tuition += course.tuition
return tuition
def cal_discount(self, percentage):
return self.paid_tuition() * float(percentage)/100
def get_passed_units(self):
return sum(course.unit for course in self.course_list)