Python Unit - 4
Python Unit - 4
Access Modifiers
public Access Modifier : The public member is accessible from inside or outside
the class.
private Access Modifier: The private member is accessible only inside class.
Define a private member by prefixing the member name with two underscores.
protected Access Modifier: The protected member is accessible. from inside the
class and its sub-class. Define a protected member by prefixing the member
name with an underscore.
Polymorphism
The word polymorphism means having many forms. In programming,
polymorphism means the same function name (but different signatures) being
used for different types. The key difference is the data types and number of
arguments used in function.
Example 1:
# morphic functions
# len() being used for a string
print(len("Medi-Caps University"))
# len() being used for a list
print(len([10, 20, 30]))
Example 2:
Example 3:
print(len("Medi-Caps University"))
print(len(["Python", "Java", "C"]))
print(len({"Name": "John", "Address": "Nepal"}))
Class Polymorphism
We can use the concept of polymorphism while creating class methods as Python
allows different classes to have methods with the same name.
class Cat:
self.name = name
self.age = age
def info(self):
def make_sound(self):
print("Meow")
class Dog:
def __init__(self, name, age):
self.name = name
self.age = age
def info(self):
def make_sound(self):
print("Bark")
dog1 = Dog("Fluffy", 4)
animal.make_sound()
animal.info()
animal.make_sound()
Classes in Python
In Python, a class is a user-defined data type that contains both the data itself and the
methods that may be used to manipulate it. In a sense, classes serve as a template to
create objects. They provide the characteristics and operations that the objects will
employ.
Suppose a class is a prototype of a building. A building contains all the details about the
floor, rooms, doors, windows, etc. we can make as many buildings as we want, based on
these details. Hence, the building can be seen as a class, and we can create as many
objects of this class.
sound = "bark"
Object of Python Class
An Object is an instance of a Class. A class is like a blueprint while an instance
is a copy of the class with actual values. It’s not an idea anymore, it’s an actual
dog, like a dog of breed pug who’s seven years old. You can have many dogs
to create many different instances, but without the class as a guide, you would
be lost, not knowing what information is required.
An object consists of:
State: It is represented by the attributes of an object. It also reflects the
properties of an object.
Behavior: It is represented by the methods of an object. It also reflects the
response of an object to other objects.
Identity: It gives a unique name to an object and enables one object to
interact with other objects.
Example
class GFG:
self.name = name
self.company = company
def show(self):
obj.show()
__init__() method
The __init__ method is similar to constructors in C++ and Java. Constructors
are used to initializing the object’s state. Like methods, a constructor also
contains a collection of statements(i.e. instructions) that are executed at the
time of Object creation. It runs as soon as an object of a class is instantiated.
The method is useful to do any initialization you want to do with your object.
Example:
# Sample class with init method
class Person:
self.name = name
# Sample Method
def say_hi(self):
p = Person('Nikhil')
p.say_hi()
__str__() method
Python has a particular method called __str__(). that is used to define how
a class object should be represented as a string. It is often used to give an
object a human-readable textual representation, which is helpful for logging,
debugging, or showing users object information. When a class object is used to
create a string using the built-in functions print() and str(), the __str__() function
is automatically used. You can alter how objects of a class are represented in
strings by defining the __str__() method.
Example:
class GFG:
self.name = name
self.company = company
def __str__(self):
print(my_obj)
Constructor Destructor
Constructors allow an object to initialize They allow objects to execute code when it
a value before it is used. is being destroyed.
They are called in the successive order of They are called in the reverse order of their
their creation. creation.
The concept of copy constructor allows There is no such concept in the case of
an object to get initialized from another destructors.
object.
__del__()
Multiple inheritance
Inheritance provides code reusability to the program because we can use an existing
class to create a new class instead of creating it from scratch.
In inheritance, the child class acquires the properties and can access all the data
members and functions defined in the parent class. A child class can also provide its
specific implementation to the functions of the parent class.
Multiple-Inheritance
When a class is derived from more than one base class it is called multiple
Inheritance. The derived class inherits all the features of the base case.
Example
# Python Program to depict multiple inheritance
# when method is overridden in both classes
class Class1:
def m(self):
print("In Class1")
class Class2(Class1):
def m(self):
print("In Class2")
class Class3(Class1):
def m(self):
print("In Class3")
obj = Class4()
obj.m()
Example
# + operator for different purposes.
print(1 + 2)
# concatenate two strings
print("ABC"+"For")
# Product two numbers
print(3 * 4)
# Repeat the String
print("XYZ"*4)
Example 2
# to overload an binary + operator
class A:
self.a = a
ob1 = A(1)
ob2 = A(2)
ob3 = A("ABC")
ob4 = A("For")
print(ob1 + ob2)
print(ob3 + ob4)
print(A.__add__(ob1 , ob2))
print(A.__add__(ob3,ob4))
print(ob1.__add__(ob2))
print(ob3.__add__(ob4))
Example 3:
# Python Program to perform addition of two complex numbers using binary + operator overloading.
class complex:
self.a = a
self.b = b
# adding two objects
Ob1 = complex(1, 2)
Ob2 = complex(2, 3)
print(Ob3)
Example :
Emulating Addition
class MyNumber:
def __init__(self, x):
self.x = x
def __add__(self, other):
return MyNumber(self.x + other.x)
a = MyNumber(2)
b = MyNumber(3)
c = a + b
print(c.x)
Emulating Comparison
class MyNumber:
def __init__(self, x):
self.x = x
def __eq__(self, other):
return self.x == other.x
a = MyNumber(2)
b = MyNumber(3)
c = MyNumber(2)
print(a == b)
print(a == c)