SlideShare a Scribd company logo
INHERITANCE ppt of python.pptx & PYTHON INHERITANCE PPT
TOPIC NAME : INHERITANCE IN PYTHON
Submitted by :
Nisha kumari
MCA 2nd sem
DEFINITION OF INHERITANCE
 When we define a class that inherits all the
properties of other class called inheritance.
SYNTAX OF INHERITANCE
class class_name1:
properties
Class class_name2(class_name1):
properties
Class class_namen:
properties
EXAMPLE OF INHERITANCE
Class father: #parent class
#properties
Class son(Father): #parent class
#properties
EXAMPLE OF INHERITANCE
Class Father:
def lands(self): output
print(“having 15 ekar lands”) having 10 lakhmoney
Class son(Father): having 10 ekar lands
def money(self):
print(“having 10 lakh money”)
s = son()
s.money()
s.lands()
SOME IMPORTANT POINT
 When we create object of child class then we can access child
class and parent class properties.
 But when we create object of parent class then we can’t access
child class properties.
TYPES OF INHERITANCE
1. Single inheritance
2. Multiple inheritance
3. Multi-level inheritance
4. Hierarchical inheritance
SINGLE INHERITANCE
Single inheritance is nothing but which contains only
one parent class and child class.
Parent--class
Child --class
Example of single inheritance
Class A:
num1= int(input(“Enter 1st no:”)
num2= int(input(“Enter 2st no:”)
def Add(self):
print(“Addition:”,self.num1 + self.num2)
def Sub(self):
print(“Subtraction:”,self.num1 - self.num2)
Class B(A):
def Multi(self):
print(“Multiplication:”,self.num1* self.num2)
def Div(self):
print(“Division:”,self.num1/ self.num2)
Obj = B( )
Obj.Add( )
Obj.Sub( )
Obj.Multi( )
Obj.Div( )
MULTI - LEVEL INHERITANCE
In this inheritance we have one parent class and multiple child
class.
parent--class
Child--class
Child--class
SYNTAX OF MULTI - LEVEL INHERITANCE
Class parent:
#properties
Class child1(parent):
#properties
Class child2(child1):
#properties
Example of multi-level inheritance
Class Father:
surname = “singh”
Class Son(Father):
def show(self):
print(“Ajeet”, self.surname)
Class grandDaughter(Son):
def display(self):
print(“Priya”,self.surname)
S = Son( )
S .show( )
S1 =grandDaughter( )
S1.display( )
S1.show( )
Output
Ajeet singh
Priya singh
Ajeet singh
MULTIPLE INHERITANCE
Multiple inheritance which contains more parents class and
only one child class.
Parent--class Parent--class
Parent--class
Child--class
Example of multiple inheritance
Class A:
a=50
b=30
def sum(self):
print(“sum=“, self.a + self.b)
Class B:
def sub(self):
print(“sub=“, self.a – self.b)
Class C:
def Mul(self):
print(“mul=“,self.a * self.b)
Class D(A,B,C):
def show(self):
print(“successful”)
Example of multiple inheritance
Obj = D()
Obj.sum()
Obj.sub()
Obj.Mul()
Obj.show()
Output
Sum=80
Sub=20
Mul=1500
successful
HIERARCHICAL INHERITANCE
Hierarchical inheritance contains only one parent class and
multiple child classes but each child class can access
parent class property.
Parent--class
Child--class Child--class
Example of hierarchical inheritance
Class Father:
surname = “singh”
def show(self):
print(“my surname is”,self.surname)
Class son(Father):
def name(self):
print(“my name is Ajay kumar”, self.surname)
Class Daughter(Father):
def display(self):
print(“my name is Nisha”,self.surname)
Example of hierarchical inheritance
S = son( )
D=Daughter( )
S.name( )
D.display( )
Output
My name is Ajay kumar singh
My name is Nisha singh
INHERITANCE ppt of python.pptx & PYTHON INHERITANCE PPT

More Related Content

Similar to INHERITANCE ppt of python.pptx & PYTHON INHERITANCE PPT (13)

601109769-Pythondyttcjycvuv-Inheritance .pptx
601109769-Pythondyttcjycvuv-Inheritance .pptx601109769-Pythondyttcjycvuv-Inheritance .pptx
601109769-Pythondyttcjycvuv-Inheritance .pptx
srinivasa gowda
 
Inheritance In Java
Inheritance In JavaInheritance In Java
Inheritance In Java
Darpan Chelani
 
Inheritance
InheritanceInheritance
Inheritance
SangeethaSasi1
 
Inheritance and polymorphism oops concepts in python
Inheritance and polymorphism  oops concepts in pythonInheritance and polymorphism  oops concepts in python
Inheritance and polymorphism oops concepts in python
deepalishinkar1
 
Inheritance in java
Inheritance in java Inheritance in java
Inheritance in java
yash jain
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in java
Ariful Islam
 
Values
ValuesValues
Values
BenEddy
 
Object oriented programming inheritance
Object oriented programming inheritanceObject oriented programming inheritance
Object oriented programming inheritance
Renas Rekany
 
Multiple Inheritance
Multiple InheritanceMultiple Inheritance
Multiple Inheritance
BhavyaJain137
 
Dps_Python1_Ectracted_2345633_Pptx4.pptx
Dps_Python1_Ectracted_2345633_Pptx4.pptxDps_Python1_Ectracted_2345633_Pptx4.pptx
Dps_Python1_Ectracted_2345633_Pptx4.pptx
ecomwithfaith
 
Inheritance
InheritanceInheritance
Inheritance
baabtra.com - No. 1 supplier of quality freshers
 
All about python Inheritance.python codingdf
All about python Inheritance.python codingdfAll about python Inheritance.python codingdf
All about python Inheritance.python codingdf
adipapai181023
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in java
RahulAnanda1
 
601109769-Pythondyttcjycvuv-Inheritance .pptx
601109769-Pythondyttcjycvuv-Inheritance .pptx601109769-Pythondyttcjycvuv-Inheritance .pptx
601109769-Pythondyttcjycvuv-Inheritance .pptx
srinivasa gowda
 
Inheritance and polymorphism oops concepts in python
Inheritance and polymorphism  oops concepts in pythonInheritance and polymorphism  oops concepts in python
Inheritance and polymorphism oops concepts in python
deepalishinkar1
 
Inheritance in java
Inheritance in java Inheritance in java
Inheritance in java
yash jain
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in java
Ariful Islam
 
Object oriented programming inheritance
Object oriented programming inheritanceObject oriented programming inheritance
Object oriented programming inheritance
Renas Rekany
 
Multiple Inheritance
Multiple InheritanceMultiple Inheritance
Multiple Inheritance
BhavyaJain137
 
Dps_Python1_Ectracted_2345633_Pptx4.pptx
Dps_Python1_Ectracted_2345633_Pptx4.pptxDps_Python1_Ectracted_2345633_Pptx4.pptx
Dps_Python1_Ectracted_2345633_Pptx4.pptx
ecomwithfaith
 
All about python Inheritance.python codingdf
All about python Inheritance.python codingdfAll about python Inheritance.python codingdf
All about python Inheritance.python codingdf
adipapai181023
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in java
RahulAnanda1
 

More from deepuranjankumar08 (8)

DSA MCA Stack-and-Queue-Data-Structures.pptx
DSA MCA Stack-and-Queue-Data-Structures.pptxDSA MCA Stack-and-Queue-Data-Structures.pptx
DSA MCA Stack-and-Queue-Data-Structures.pptx
deepuranjankumar08
 
JAVA AWA S SEMG HAINH JAVA mar chandan.pptx
JAVA AWA S SEMG HAINH JAVA mar chandan.pptxJAVA AWA S SEMG HAINH JAVA mar chandan.pptx
JAVA AWA S SEMG HAINH JAVA mar chandan.pptx
deepuranjankumar08
 
Introduction to HTML+CSS+Javascript by Deepu.pptx
Introduction to HTML+CSS+Javascript by Deepu.pptxIntroduction to HTML+CSS+Javascript by Deepu.pptx
Introduction to HTML+CSS+Javascript by Deepu.pptx
deepuranjankumar08
 
Html,Css,Js INTERNSHIP REPORT By SELF pptx
Html,Css,Js  INTERNSHIP REPORT By  SELF pptxHtml,Css,Js  INTERNSHIP REPORT By  SELF pptx
Html,Css,Js INTERNSHIP REPORT By SELF pptx
deepuranjankumar08
 
file system vs Dbms file system vs Dbmsppt.pptx
file system vs Dbms file system vs Dbmsppt.pptxfile system vs Dbms file system vs Dbmsppt.pptx
file system vs Dbms file system vs Dbmsppt.pptx
deepuranjankumar08
 
5g-technology-ppt for seminar report-.ppt
5g-technology-ppt for seminar report-.ppt5g-technology-ppt for seminar report-.ppt
5g-technology-ppt for seminar report-.ppt
deepuranjankumar08
 
Array Data Structure for programing language
Array Data Structure for programing languageArray Data Structure for programing language
Array Data Structure for programing language
deepuranjankumar08
 
PYTHON inheritance PPT.pptxpython inheritance ppt and inheritance in python
PYTHON inheritance PPT.pptxpython inheritance ppt and inheritance in pythonPYTHON inheritance PPT.pptxpython inheritance ppt and inheritance in python
PYTHON inheritance PPT.pptxpython inheritance ppt and inheritance in python
deepuranjankumar08
 
DSA MCA Stack-and-Queue-Data-Structures.pptx
DSA MCA Stack-and-Queue-Data-Structures.pptxDSA MCA Stack-and-Queue-Data-Structures.pptx
DSA MCA Stack-and-Queue-Data-Structures.pptx
deepuranjankumar08
 
JAVA AWA S SEMG HAINH JAVA mar chandan.pptx
JAVA AWA S SEMG HAINH JAVA mar chandan.pptxJAVA AWA S SEMG HAINH JAVA mar chandan.pptx
JAVA AWA S SEMG HAINH JAVA mar chandan.pptx
deepuranjankumar08
 
Introduction to HTML+CSS+Javascript by Deepu.pptx
Introduction to HTML+CSS+Javascript by Deepu.pptxIntroduction to HTML+CSS+Javascript by Deepu.pptx
Introduction to HTML+CSS+Javascript by Deepu.pptx
deepuranjankumar08
 
Html,Css,Js INTERNSHIP REPORT By SELF pptx
Html,Css,Js  INTERNSHIP REPORT By  SELF pptxHtml,Css,Js  INTERNSHIP REPORT By  SELF pptx
Html,Css,Js INTERNSHIP REPORT By SELF pptx
deepuranjankumar08
 
file system vs Dbms file system vs Dbmsppt.pptx
file system vs Dbms file system vs Dbmsppt.pptxfile system vs Dbms file system vs Dbmsppt.pptx
file system vs Dbms file system vs Dbmsppt.pptx
deepuranjankumar08
 
5g-technology-ppt for seminar report-.ppt
5g-technology-ppt for seminar report-.ppt5g-technology-ppt for seminar report-.ppt
5g-technology-ppt for seminar report-.ppt
deepuranjankumar08
 
Array Data Structure for programing language
Array Data Structure for programing languageArray Data Structure for programing language
Array Data Structure for programing language
deepuranjankumar08
 
PYTHON inheritance PPT.pptxpython inheritance ppt and inheritance in python
PYTHON inheritance PPT.pptxpython inheritance ppt and inheritance in pythonPYTHON inheritance PPT.pptxpython inheritance ppt and inheritance in python
PYTHON inheritance PPT.pptxpython inheritance ppt and inheritance in python
deepuranjankumar08
 
Ad

Recently uploaded (20)

ABCs of Bookkeeping for Nonprofits TechSoup.pdf
ABCs of Bookkeeping for Nonprofits TechSoup.pdfABCs of Bookkeeping for Nonprofits TechSoup.pdf
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
TechSoup
 
MATERI PPT TOPIK 4 LANDASAN FILOSOFIS PENDIDIKAN
MATERI PPT TOPIK 4 LANDASAN FILOSOFIS PENDIDIKANMATERI PPT TOPIK 4 LANDASAN FILOSOFIS PENDIDIKAN
MATERI PPT TOPIK 4 LANDASAN FILOSOFIS PENDIDIKAN
aditya23173
 
How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18
Celine George
 
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Chalukyas of Gujrat, Solanki Dynasty NEP.pptxChalukyas of Gujrat, Solanki Dynasty NEP.pptx
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Dr. Ravi Shankar Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptxROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
Ray Dalio How Countries go Broke the Big Cycle
Ray Dalio How Countries go Broke the Big CycleRay Dalio How Countries go Broke the Big Cycle
Ray Dalio How Countries go Broke the Big Cycle
Dadang Solihin
 
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti MpdBasic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Restu Bias Primandhika
 
Rai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptx
Rai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptxRai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptx
Rai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptx
Dr. Ravi Shankar Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
GEOGRAPHY-Study Material [ Class 10th] .pdf
GEOGRAPHY-Study Material [ Class 10th] .pdfGEOGRAPHY-Study Material [ Class 10th] .pdf
GEOGRAPHY-Study Material [ Class 10th] .pdf
SHERAZ AHMAD LONE
 
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Pragya - UEM Kolkata Quiz Club
 
Publishing Your Memoir with Brooke Warner
Publishing Your Memoir with Brooke WarnerPublishing Your Memoir with Brooke Warner
Publishing Your Memoir with Brooke Warner
Brooke Warner
 
BINARY files CSV files JSON files with example.pptx
BINARY files CSV files JSON files with example.pptxBINARY files CSV files JSON files with example.pptx
BINARY files CSV files JSON files with example.pptx
Ramakrishna Reddy Bijjam
 
How to Manage Multi Language for Invoice in Odoo 18
How to Manage Multi Language for Invoice in Odoo 18How to Manage Multi Language for Invoice in Odoo 18
How to Manage Multi Language for Invoice in Odoo 18
Celine George
 
IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptxIDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
Unit 3 Poster Sketches with annotations.pptx
Unit 3 Poster Sketches with annotations.pptxUnit 3 Poster Sketches with annotations.pptx
Unit 3 Poster Sketches with annotations.pptx
bobby205207
 
Overview of Employee in Odoo 18 - Odoo Slides
Overview of Employee in Odoo 18 - Odoo SlidesOverview of Employee in Odoo 18 - Odoo Slides
Overview of Employee in Odoo 18 - Odoo Slides
Celine George
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptxjune 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
Capitol Doctoral Presentation -June 2025.pptx
Capitol Doctoral Presentation -June 2025.pptxCapitol Doctoral Presentation -June 2025.pptx
Capitol Doctoral Presentation -June 2025.pptx
CapitolTechU
 
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptxSPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
Sourav Kr Podder
 
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition IILDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDM & Mia eStudios
 
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
ABCs of Bookkeeping for Nonprofits TechSoup.pdfABCs of Bookkeeping for Nonprofits TechSoup.pdf
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
TechSoup
 
MATERI PPT TOPIK 4 LANDASAN FILOSOFIS PENDIDIKAN
MATERI PPT TOPIK 4 LANDASAN FILOSOFIS PENDIDIKANMATERI PPT TOPIK 4 LANDASAN FILOSOFIS PENDIDIKAN
MATERI PPT TOPIK 4 LANDASAN FILOSOFIS PENDIDIKAN
aditya23173
 
How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18
Celine George
 
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptxROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
Ray Dalio How Countries go Broke the Big Cycle
Ray Dalio How Countries go Broke the Big CycleRay Dalio How Countries go Broke the Big Cycle
Ray Dalio How Countries go Broke the Big Cycle
Dadang Solihin
 
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti MpdBasic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Restu Bias Primandhika
 
GEOGRAPHY-Study Material [ Class 10th] .pdf
GEOGRAPHY-Study Material [ Class 10th] .pdfGEOGRAPHY-Study Material [ Class 10th] .pdf
GEOGRAPHY-Study Material [ Class 10th] .pdf
SHERAZ AHMAD LONE
 
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Pragya - UEM Kolkata Quiz Club
 
Publishing Your Memoir with Brooke Warner
Publishing Your Memoir with Brooke WarnerPublishing Your Memoir with Brooke Warner
Publishing Your Memoir with Brooke Warner
Brooke Warner
 
BINARY files CSV files JSON files with example.pptx
BINARY files CSV files JSON files with example.pptxBINARY files CSV files JSON files with example.pptx
BINARY files CSV files JSON files with example.pptx
Ramakrishna Reddy Bijjam
 
How to Manage Multi Language for Invoice in Odoo 18
How to Manage Multi Language for Invoice in Odoo 18How to Manage Multi Language for Invoice in Odoo 18
How to Manage Multi Language for Invoice in Odoo 18
Celine George
 
IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptxIDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
Unit 3 Poster Sketches with annotations.pptx
Unit 3 Poster Sketches with annotations.pptxUnit 3 Poster Sketches with annotations.pptx
Unit 3 Poster Sketches with annotations.pptx
bobby205207
 
Overview of Employee in Odoo 18 - Odoo Slides
Overview of Employee in Odoo 18 - Odoo SlidesOverview of Employee in Odoo 18 - Odoo Slides
Overview of Employee in Odoo 18 - Odoo Slides
Celine George
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptxjune 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
Capitol Doctoral Presentation -June 2025.pptx
Capitol Doctoral Presentation -June 2025.pptxCapitol Doctoral Presentation -June 2025.pptx
Capitol Doctoral Presentation -June 2025.pptx
CapitolTechU
 
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptxSPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
Sourav Kr Podder
 
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition IILDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDM & Mia eStudios
 
Ad

INHERITANCE ppt of python.pptx & PYTHON INHERITANCE PPT

  • 2. TOPIC NAME : INHERITANCE IN PYTHON Submitted by : Nisha kumari MCA 2nd sem
  • 3. DEFINITION OF INHERITANCE  When we define a class that inherits all the properties of other class called inheritance.
  • 4. SYNTAX OF INHERITANCE class class_name1: properties Class class_name2(class_name1): properties Class class_namen: properties
  • 5. EXAMPLE OF INHERITANCE Class father: #parent class #properties Class son(Father): #parent class #properties
  • 6. EXAMPLE OF INHERITANCE Class Father: def lands(self): output print(“having 15 ekar lands”) having 10 lakhmoney Class son(Father): having 10 ekar lands def money(self): print(“having 10 lakh money”) s = son() s.money() s.lands()
  • 7. SOME IMPORTANT POINT  When we create object of child class then we can access child class and parent class properties.  But when we create object of parent class then we can’t access child class properties.
  • 8. TYPES OF INHERITANCE 1. Single inheritance 2. Multiple inheritance 3. Multi-level inheritance 4. Hierarchical inheritance
  • 9. SINGLE INHERITANCE Single inheritance is nothing but which contains only one parent class and child class. Parent--class Child --class
  • 10. Example of single inheritance Class A: num1= int(input(“Enter 1st no:”) num2= int(input(“Enter 2st no:”) def Add(self): print(“Addition:”,self.num1 + self.num2) def Sub(self): print(“Subtraction:”,self.num1 - self.num2)
  • 11. Class B(A): def Multi(self): print(“Multiplication:”,self.num1* self.num2) def Div(self): print(“Division:”,self.num1/ self.num2) Obj = B( ) Obj.Add( ) Obj.Sub( ) Obj.Multi( ) Obj.Div( )
  • 12. MULTI - LEVEL INHERITANCE In this inheritance we have one parent class and multiple child class. parent--class Child--class Child--class
  • 13. SYNTAX OF MULTI - LEVEL INHERITANCE Class parent: #properties Class child1(parent): #properties Class child2(child1): #properties
  • 14. Example of multi-level inheritance Class Father: surname = “singh” Class Son(Father): def show(self): print(“Ajeet”, self.surname) Class grandDaughter(Son): def display(self): print(“Priya”,self.surname) S = Son( ) S .show( ) S1 =grandDaughter( ) S1.display( ) S1.show( ) Output Ajeet singh Priya singh Ajeet singh
  • 15. MULTIPLE INHERITANCE Multiple inheritance which contains more parents class and only one child class. Parent--class Parent--class Parent--class Child--class
  • 16. Example of multiple inheritance Class A: a=50 b=30 def sum(self): print(“sum=“, self.a + self.b) Class B: def sub(self): print(“sub=“, self.a – self.b) Class C: def Mul(self): print(“mul=“,self.a * self.b) Class D(A,B,C): def show(self): print(“successful”)
  • 17. Example of multiple inheritance Obj = D() Obj.sum() Obj.sub() Obj.Mul() Obj.show() Output Sum=80 Sub=20 Mul=1500 successful
  • 18. HIERARCHICAL INHERITANCE Hierarchical inheritance contains only one parent class and multiple child classes but each child class can access parent class property. Parent--class Child--class Child--class
  • 19. Example of hierarchical inheritance Class Father: surname = “singh” def show(self): print(“my surname is”,self.surname) Class son(Father): def name(self): print(“my name is Ajay kumar”, self.surname) Class Daughter(Father): def display(self): print(“my name is Nisha”,self.surname)
  • 20. Example of hierarchical inheritance S = son( ) D=Daughter( ) S.name( ) D.display( ) Output My name is Ajay kumar singh My name is Nisha singh