in

Introduction of Python Object-oriented programming(Python Oops) – Day 12

In this article, we will learn the introduction of python Object-oriented programming.

Hello All, today we are starting object-oriented programming with python.

Start learning Python from scratch for Free.

So far you have been coding quite a bit in Python, and are familiar with its syntax. You have written small programs using functions. What if you have to write a real-world complex application like an online shopping app? How would you go about doing it and where you will start?

In this course, you are going to learn how to build complex real-world applications using a technique known as object-oriented programming.

Python supports multiple approaches to solve a problem with, so-called multiparadigm programming approach.

Object-oriented programming is used to solve real-life problems and it is easier to relate to real-life problems in object-oriented programming.

Object oriented programming concepts

  1. Class
  2. Object
  3. Polymorphism
  4. Encapsulation
  5. Inheritance
  6. Abstraction

Let’s see by example.

Suppose we want to make an online shopping app on which we can sell shoes and mobile and accept the return of these products.

Our current way of programming could represent the logic like this, but it is very complicated and it is also not able to cover all logic. 

 Current way of programming(structured programming)

total_price_mobile = 0
total_price_shoe = 0
def purchase_mobile(price,brand):
    global total_price_mobile
    if brand == "Apple":
        discount = 10
    else:
        discount = 5
    total_price_mobile = price - price * discount / 100
    print("Total price for Mobile is "+str(total_price_mobile))
def purchase_shoe(price,material):
    global total_price_shoe
    if material == "leather":
        tax = 5
    else:
        tax = 2
    total_price_shoe = price + price * tax / 100
    print("Total price for Shoe is "+str(total_price_shoe))
    
def return_mobile():
    print("Refund price for Mobile is ",total_price_mobile)
    
def return_shoe():
    print("Refund price for Shoe is ",total_price_shoe)
    
purchase_mobile(20000,"Apple")
purchase_shoe(200,"leather")
purchase_mobile(2000,"Samsung")

return_mobile()

We can see that with our current style of programming, we quickly run into complications trying to simulate real world scenarios, like purchasing and returning a product.

The problem arises due to the fact that in real life everything has some data/characteristic associated with it and some behavior associated with it and we are not able to replicate this in a code. For example:

  • All mobiles have price and brand as its data and purchase and return as its behavior.
  • All shoes have price and material as its data and purchase and return as its behavior.

We need a way of programming which allows to club together the data and behavior so that it becomes easier to code real world scenarios.

Object oriented programming

In object-oriented programming, we make a template for a problem so we can relate it with real-life scenarios.

introduction of python object-oriented programming

Classes and object

Objects are real world entities. Anything you can describe in this world is an object. Classes on the other hand are not real. They are just a concept. Class is a short form of Classification. A class is a classification of certain objects and it is just a description of the properties and behavior all objects of that classification should possess.

Polymorphism

When we can use a single function with different signatures for different purposes called polymorphism. More About polymorphism – click here

Encapsulation

When we want to secure our code for unwanted or accidental change then we can secure Methods and attributes using double underscore(__).

More about Encapsulation – click here

Inheritance

Sometimes we need to inherit properties of any class to another class for increasing it’s functionality. This process of inheriting properties of other classes to the current class is called Inheritance.

Examples on introduction to python programming

If you like this article, please share it with your friends. if you have any question regarding this article feel free to ask anytime. we will answer as soon as possible.

comment with your question, we will reply as soon as possible.

What do you think?

Written by My Inquisitor

Comments

Leave a Reply

GIPHY App Key not set. Please check settings

Loading…

0

Post Anatomy: The perfect blog posts writing guide in 2023

Python Object and Classes – Day 13