-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path31. Multiple Inheritance.py
37 lines (33 loc) · 1.14 KB
/
31. Multiple 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
36
37
# Multiple Inheritance
# MRO- Method Resolution Order
class Entry:
def __init__(self, roll_no, name):
self.roll_no= roll_no
self.name= name
def open(self):
print(f"{self.name} Rollno. {self.roll_no} is eligible for admission")
def approved(self):
print(f"{self.name} is approved and is given Entry.")
class Stream:
def __init__(self, name, age, stream):
self.name= name
self.age= age
self.stream= stream
def open(self):
print(f"{self.name} age {self.age} is eligible for {self.stream} in BTech")
def approved(self):
print(f"{self.name} is approved in this Stream.")
class Library (Entry, Stream):
def __init__(self, roll_no, name, stream):
super().__init__(roll_no, name)
self.stream= stream
def open(self):
print(f"{self.name} Rollno. {self.roll_no} of {self.stream} Stream is eligible to take books from here.")
a= Entry(10,"Saurabh Singh Bhandari")
b= Stream("Saurabh Singh Bhandari", 22, "Computer Science")
c= Library(10,"Saurabh Singh Bhandari", "Computer Science")
a.open()
b.open()
c.open()
c.approved()
print(Library.mro())