Search This Blog

Wednesday, 15 December 2021

OOPS (Object Oriented Programming) in Python

Python OOPs Concepts

free amp template

Python is an object-oriented programming language. It allows us to develop applications using Object Oriented approach. In Python, we can easily create and use classes and objects.

here is a small introduction of Object-Oriented Programming (OOP) to help you - 

  • 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 − 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. 
  • Data member − A class variable or instance variable that holds data associated with a class and its objects. 
  • Class variable − A variable that is shared by all instances of a class. Class variables are defined within a class but outside any of the class's methods. Class variables are not used as frequently as instance variables are. 
  • Function overloading − The assignment of more than one behavior to a particular function. The operation performed varies by the types of objects or arguments involved. 
  • Instance variable − A variable that is defined inside a method and belongs only to the current instance of a class. 
  • Inheritance − The transfer of the characteristics of a class to other classes that are derived from it. 
  • Polymorphism - Polymorphism is made by two words "poly" and "morphs". Poly means many and Morphs means form, shape. It defines that one task can be performed in different ways
  • Encapsulation - Encapsulation is also the feature of object-oriented programming. It is used to restrict access to methods and variables. In encapsulation, code and data are wrapped together within a single unit from being modified by accident.
  • Data Abstraction - Abstraction is used to hide internal details and show only functionalities. Abstracting something means to give names to things, so that the name captures the core of what a function or a whole program does.
  • Instance − 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. 
  • Instantiation − The creation of an instance of a class. 
  • Method − A special kind of function that is defined in a class definition. 
  • Operator overloading − The assignment of more than one function to a particular operator. 

No comments:

Post a Comment

how to implement YOLOv3 using Python and TensorFlow

Object Detection with YOLOv3 Introduction YOLOv3 (You Only Look Once version 3) is a real-time object detection algorithm that can detect ob...