-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInheritance_1.py
312 lines (270 loc) · 6.06 KB
/
Inheritance_1.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
# # types of inheritance
# 1. single inheritance
# 2. multilevel inheritance
# 3. Multiple inheritance
# 4. Hierarchical inheritance
#----------------------------------------------------------------
#-----------single inheritance---------------
# class student:
# def __init__(self,name):
# self.name=name
# def data(self):
# self.name=input('enter your name : ')
# class details(student):
# def __init__(self,mark):
# self.mark=mark
# def get(self):
# self.mark=int(input("enter your mark : "))
# print('Name : ',self.name)
# print('Mark : ',self.mark)
#
# obj=details('')
# obj.data()
# obj.get()
#------------------------------------------------------------------
#-----------------multilevel inheritance-------------
# class A:
# def __init__(self,name):
# self.name=name
# def data(self):
# self.name=input('enter your name : ')
# class B(A):
# def __init__(self,mark):
# self.mark=mark
# def get(self):
# self.mark=int(input("enter your mark : "))
# print('Name : ', self.name)
# print('Mark : ', self.mark)
# class C(B):
# def hoo(self):
# print('Hiii.... Habibiessss')
#
# obj=C('')
# obj.data()
# obj.get()
# obj.hoo()
#---------------------another example for multilevel inheritance----------------------------------
# class A:
# def __init__(self,name):
# self.name=name
# def data(self):
# self.name=input('enter your name : ')
# class B(A):
# def __init__(self,mark):
# self.mark=mark
# def get(self):
# self.mark=int(input("enter your mark : "))
#
# class C(B):
# def __init__(self,hod):
# self.hod=hod
# def put(self):
# self.hod=input('enter hod name : ')
# print('Name : ', self.name)
# print('Mark : ', self.mark)
# print('HOD : ',self.hod)
#
# obj=C('')
# obj.data()
# obj.get()
# obj.put()
#-------------------------------------------------------
#----------multiple inheritance--------------------
# class A:
# def __init__(self,name):
# self.name=name
# def first(self):
# self.name=input('enter A : ')
# class B:
# def __init__(self,age):
# self.age=age
# def second(self):
# self.age=int(input('enter B : '))
# class C(A,B):
# def third(self):
# print('\nStudent details')
# print('Name : ',self.name)
# print('Age : ',self.age)
# og=C('')
# og.first()
# og.second()
# og.third()
#-----another example for multiple inheritance-----
# class A:
# def first(self):
# print('Class A')
# class B:
# def second(self):
# print('Class B')
# class C(A,B):
# def third(self):
# print("Class C has A & B")
#
# ob=C()
# ob.first()
# ob.second()
# ob.third()
#=========================================================================
# class A:
# def d1(self):
# print(1,2,3,4,end=' ')
# class B:
# def d2(self):
# print(5,6,7,8,end=' ')
# class C(A,B):
# def d3(self):
# print(9,10)
#
#
# a=C()
# a.d1()
# a.d2()
# a.d3()
#--------------------------------------------
#------constructor in inheritance----------
# class A:
# def __init__(self):
# print("A init")
# def d1(self):
# print('A1')
# def d2(self):
# print('A2')
# class B:
#
# def __init__(self):
# # super().__init__()
# print('B init')
# # super().__init__()
# def d3(self):
# print('B1')
# def d4(self):
# print('B2')
#
# class C(A,B):
# def __init__(self):
# super().__init__()
# print('C init')
# def d5(self):
# print('C1')
# def d6(self):
# print('C2')
#
# a=C()
#==================================================
# class A:
# def __init__(self):
# super().__init__()
# print('A1')
#
# class B:
# def __init__(self):
# super().__init__()
# print('B1')
#
# class C(A,B):
# def set_c(self):
# # super().__init__()
# print('C1')
#
# o=C()
#
#
# o.set_c()
#==================================================
# class A:
# def set(self,n):
# self.name=n
# class B(A):
# def print(self):
# print('Name : ',self.name)
#
# x=B()
# x.set('Arun')
# x.print()
#===================================================
# class A:
# def __init__(self):
# print('Class A')
#
# class B:
# def __init__(self):
# print('Class B')
# class C(A,B):
# def __init__(self):
# A.__init__(self)
# B.__init__(self)
# print('Class C')
# def first(self):
# print('Hiiiii')
#
# x=C()
# x.first()
#=============== calling the constructor using the "Super" Keyword=====================
# class A:
# def __init__(self):
# print('Class A')
#
# class B:
# def __init__(self):
# print('Class B')
# class C(B,A):
# def __init__(self):
# super().__init__()
# print('Class C')
# def first(self):
# print('Hiiiii')
#
# x=C()
# x.first()
#-------------------------------------------------------------------------------------------
# class A:
# def __init__(self):
# print('Class A')
# class B:
# def __init__(self):
# print('Class B')
#
# class C(A,B):
# def __init__(self):
# A.__init__(self)
# B.__init__(self)
# print('Class C')
#
# obj=C()
#------------------- Multiple inheritance(method overiding) ------------------
# class A:
# def display(self):
# print('first')
#
# class B:
# def display(self):
# print('second')
#
# class C(B,A):
# def display_3(self):
# print('third')
#
# obj=C()
# obj.display()
#
# print(C.mro())
#----------------- Multilevel inheritance --------------------------
# class A:
# def display_1(self):
# print('first')
#
# class B(A):
# def display_2(self):
# print('second')
#
# class C(B):
# def third(self):
# print('third')
#
# obj=C()
# obj.display_1()
# obj.display_2()
# obj.third()
#
# print(C.mro())
#-----------------------------------------------