-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInheritance.py
111 lines (78 loc) · 1.63 KB
/
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
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
# A Subclass can access all the features of Super Class, but a Super class can not access any features of Subclass
## Single Level Inheritance
"""
class A:
def feature1(self):
print("Feature 1 working")
def feature2(self):
print("Feature 2 working")
class B(A):
def feature3(self):
print("Feature 3 working")
def feature4(self):
print("Feature 4 working")
a = A()
a.feature1()
a.feature2()
b = B()
b.feature1()
b.feature2()
b.feature3()
b.feature4()
"""
## MultiLevel Inheritance
"""
class A:
def feature1(self):
print("Feature 1 working")
def feature2(self):
print("Feature 2 working")
class B(A):
def feature3(self):
print("Feature 3 working")
def feature4(self):
print("Feature 4 working")
class C(B):
def feature5(self):
print("Feature 5 working")
a = A()
a.feature1()
a.feature2()
b = B()
b.feature1()
b.feature2()
b.feature3()
b.feature4()
c = C()
c.feature1()
c.feature2()
c.feature3()
c.feature4()
c.feature5()
"""
## Multiple Inheritance
class A:
def feature1(self):
print("Feature 1 working")
def feature2(self):
print("Feature 2 working")
class B:
def feature3(self):
print("Feature 3 working")
def feature4(self):
print("Feature 4 working")
class C(A, B):
def feature5(self):
print("Feature 5 working")
a = A()
a.feature1()
a.feature2()
b = B()
b.feature3()
b.feature4()
c = C()
c.feature1()
c.feature2()
c.feature3()
c.feature4()
c.feature5()