Chapter 5
Classes and Objects in Python
Object-oriented programming (OOP) is a powerful paradigm in Python that allows us to represent real-world entities as objects. Python achieves this through classes and objects, which provide a structured way to store data and define functions that operate on that data. In this chapter, we will explore all aspects of OOP in Python, including key concepts like abstraction, encapsulation, inheritance, and polymorphism, using classes and objects as the foundation.
What Are Classes and Objects?
Class: A class is a blueprint for creating objects. It defines the attributes (data) and methods (functions) that an object of that class can have.
Object: An object is an instance of a class. It contains specific values for the data defined in the class, and it can use the methods provided by the class.
In Python, everything is an object. Even primitive data types such as integers, strings, and lists are instances of their respective classes.
Example: A Simple Class
Let’s start by defining a class for 2D points:
The
__init__
method is a constructor that initializes an object of the class.The
translate
method shifts the point by(deltax, deltay)
.The
odistance
method calculates the distance of the point from the origin (0, 0).
Example: Creating an Object
You can create an instance (object) of this class as follows:
Here, p
is an object of the Point
class.
Key Concepts in OOP
1. Encapsulation:
Encapsulation is the process of restricting access to the internal details of an object. In Python, this is often done using private variables (conventionally prefixed with an underscore) and providing access to them through methods.
Example: Encapsulation in Python
Here, the coordinates are stored in private variables _x
and _y
. The methods get_coordinates
and set_coordinates
control access to these variables, providing encapsulation.
2. Abstraction:
Abstraction means hiding the implementation details of an object and only exposing the essential functionality. In the Point
class, the user doesn’t need to know how the odistance
method calculates the distance from the origin; they only need to know that calling odistance
will give them the correct result.
3. Inheritance:
Inheritance allows a class to inherit attributes and methods from another class. This helps in code reuse and the creation of hierarchical structures.
Here, Circle
is a subclass of Shape
, inheriting its properties and methods.
4. Polymorphism:
Polymorphism allows objects of different classes to be treated as objects of a common superclass. It is implemented through method overriding, where a method in the child class can have the same name as a method in the parent class but with a different implementation.
Special Methods in Python Classes
Python allows classes to have special methods (also known as magic methods) that allow objects to behave in certain ways, like adding two objects together or converting an object to a string.
1. __str__()
Method
__str__()
MethodThe __str__
method allows you to define how an object is represented as a string. It is called automatically when the object is passed to print()
.
2. Operator Overloading with __add__()
__add__()
In Python, you can define how objects of a class behave when used with operators like +
, -
, *
, etc., by implementing special methods like __add__()
for addition.
Example: 2D Point with Polar Coordinates
Let's expand the previous example by using polar coordinates in addition to Cartesian coordinates:
In this version:
Point
is represented in polar coordinates, and we translate it in Cartesian coordinates while keeping the interface consistent.The user need not be aware of whether the internal representation is in Cartesian or polar coordinates.
Conclusion
Classes and objects are fundamental to structuring complex programs in Python. They allow you to encapsulate data and functionality, reuse code through inheritance, and implement abstraction and polymorphism to create flexible and maintainable programs. Python’s support for operator overloading, special methods, and exceptions makes classes even more powerful, allowing objects to integrate seamlessly with Python’s language constructs.
In this chapter, we’ve explored how to define classes and objects, implement methods, use special functions, and leverage object-oriented principles to build efficient and readable code.
Last updated