oursolutionarchitectoursolutionarchitect
  • Python Questions and Answers
  • Python - Programming Examples
  • Python - Quick Guide
  • Python - Useful Resources
  • Python - Discussion
    • Selected Reading
    • Q&A

    Python - OOP Concepts


    Python has been an object-oriented language since the time it existed. Due to this, creating and using classes and objects are downright easy. This chapter helps you become an expert in using Python's object-oriented programming support.

    If you do not have any previous experience with object-oriented (OO) programming, you may want to consult an introductory course on it or at least a tutorial of some sort so that you have a grasp of the basic concepts. However, here is a small introduction of Object-Oriented Programming (OOP) to help you.

    Procedural Oriented Approach

    Early programming languages developed in 50s and 60s are recognized as procedural (or procedure oriented) languages.

    A computer program describes procedure of performing certain task by writing a series of instructions in a logical order. Logic of a more complex program is broken down into smaller but independent and reusable blocks of statements called functions.

    Every function is written in such a way that it can interface with other functions in the program. Data belonging to a function can be easily shared with other in the form of arguments, and called function can return its result back to calling function.

    Prominent problems related to procedural approach are as follows −

    • Its top-down approach makes the program difficult to maintain.

    • It uses a lot of global data items, which is undesired. Too many global data items would increase memory overhead.

    • It gives more importance to process and doesn't consider data of same importance and takes it for granted, thereby it moves freely through the program.

    • Movement of data across functions is unrestricted. In real-life scenario where there is unambiguous association of a function with data it is expected to process.

    Python - OOP Concepts

    In the real world, we deal with and process objects, such as student, employee, invoice, car, etc. Objects are not only data and not only functions, but combination of both. Each real-world object has attributes and behavior associated with it.

    oop_concepts

    Attributes

    • Name, class, subjects, marks, etc., of student

    • Name, designation, department, salary, etc., of employee

    • Invoice number, customer, product code and name, price and quantity, etc., in an invoice

    • Registration number, owner, company, brand, horsepower, speed, etc., of car

    Each attribute will have a value associated with it. Attribute is equivalent to data.

    Behavior

    Processing attributes associated with an object.

    • Compute percentage of student's marks

    • Calculate incentives payable to employee

    • Apply GST to invoice value

    • Measure speed of car

    Behavior is equivalent to function. In real life, attributes and behavior are not independent of each other, rather they co-exist.

    The most important feature of object-oriented approach is defining attributes and their functionality as a single unit called class. It serves as a blueprint for all objects having similar attributes and behavior.

    In OOP, class defines what are the attributes its object has, and how is its behavior. Object, on the other hand, is an instance of the class.

    Object-oriented programming paradigm is characterized by the following principles −

    principles_of_oop

    Class

    A user-defined prototype for an object that defines a set of attributes that characterize any object of the class. The attributes are data members (class variables and instance variables) and methods, accessed via dot notation.

    Object

    An individual object of a certain class. An object obj that belongs to a class Circle, for example, is an instance of the class Circle. A unique instance of a data structure that is defined by its class. An object comprises both data members (class variables and instance variables) and methods.

    Encapsulation

    Data members of class are available for processing to functions defined within the class only. Functions of class on the other hand are accessible from outside class context. So object data is hidden from environment that is external to class. Class function (also called method) encapsulates object data so that unwarranted access to it is prevented.

    Inheritance

    A software modelling approach of OOP enables extending capability of an existing class to build new class instead of building from scratch. In OOP terminology, existing class is called base or parent class, while new class is called child or sub class.

    Child class inherits data definitions and methods from parent class. This facilitates reuse of features already available. Child class can add few more definitions or redefine a base class function.

    Polymorphism

    Polymorphism is a Greek word meaning having multiple forms. In OOP, polymorphism occurs when each sub class provides its own implementation of an abstract method in base class.