OOPs in Python
OOPs in Python
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Classes
Properties Behavior
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Class in Python
int float
bool str
Mobile
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Attributes and Methods
color
Attributes
cost
Play Game
Methods
Make Call
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Objects
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Objects in Python
a = 10 b = 20 c = 30
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Creating the first Class
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Adding parameters to the class
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Creating a class with Constructor
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Instantiating Object
Invoking the
‘employee_details’
method
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Inheritance in Python
With inheritance one class can derive the properties of another class
Man inheriting
features from his
father
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Inheritance Example
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Inheritance Example
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Over-riding init method
Invoking show_details()
method from parent class Invoking show_car_details()
method from child class
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Types of Inheritance
Single Inheritance
Multiple Inheritance
Multi-level Inheritance
Hybrid Inheritance
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Multiple Inheritance
In multiple inheritance, the child inherits from more than 1 parent class
Parent 1 Parent 2
Child
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Multiple Inheritance in Python
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Multiple Inheritance in Python
Invoking methods
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Multi-Level Inheritance
Parent
Child
Grand-Child
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Multi-Level Inheritance in Python
Grand-Child Class
Parent Class
Child Class
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Multi-Level Inheritance in Python
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.