-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinherit.py
More file actions
59 lines (46 loc) · 1.32 KB
/
inherit.py
File metadata and controls
59 lines (46 loc) · 1.32 KB
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
**Project Name:**
**Product Home Page:**
**Code Home Page:**
**Authors:** Pengfei Cui
**Copyright(c):** Pengfei Cui
**Licensing:** GPL3
**Coding Standards:**
Description
--------
"""
class SchoolMember:
'''Represents any school member'''
def __init__(self,name,age):
self.name=name
self.age=age
print '(Initialized SchoolMember: %s)' % self.name
def tell(self):
'''Tell my details.'''
print 'Name:"%s" Age:"%s"' % (self.name, self.age),
class Teacher(SchoolMember):
'''Represents a teacher.'''
def __init__(self,name,age,salary):
SchoolMember.__init__(self,name,age)
self.salary=salary
print '(INitialized Teacher: %s)' % self.name
def tell(self):
SchoolMember.tell(self)
print 'Salary: "%d"' % self.salary
class Student(SchoolMember):
'''Represents a student.'''
def __init__(self,name,age,marks):
SchoolMember.__init__(self,name,age)
self.marks=marks
print '(Initialized Student: %s)' % self.name
def tell(self):
SchoolMember.tell(self)
print 'Marks: "%d"' % self.marks
t=Teacher('Mrs. Li', 40, 30000)
s=Student('bitcpf', 22, 75)
print
members = [t,s]
for member in members:
member.tell()