-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path32. Multilevel Inheritance.py
35 lines (29 loc) · 1.08 KB
/
32. Multilevel Inheritance.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
class Entry:
Entrance= "Permitted"
def __init__(self, name, qualification):
self.name=name
self.qualification=qualification
def open(self):
print(f"{self.name} has done {self.qualification} and is {Entry.Entrance}")
class Class(Entry):
def __init__(self, roll_no, name, course):
Entry.__init__(self, name, qualification= "Twelfth")
self.roll_no= roll_no
self.course= course
def open(self):
#Entry.open(self)
print(f"{self.name} Rollno. {self.roll_no} has done {self.qualification} and is going to enroll in {self.course}")
class Stream(Class):
def __init__(self, roll_no, name, stream):
Class.__init__(self, roll_no, name, course= "Btech")
self.stream= stream
def open(self):
Class.open(self)
print(f"{self.name} of Rollno. {self.roll_no} from {self.course} is opting for {self.stream}")
a= Stream( 10, "Saurabh Singh Bhandari", "Computer Science")
a.open()
c= Class(10, "Saurabh Singh Bhandari", "BTech")
c.open()
b=Entry("Saurabh", "Twelfth")
b.open()
print(Class.mro())