Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 17, 2021 09:08 am GMT

Methods in Python O.O.P

methods in python

Introduction

This is a series of Simplified Object-oriented programming in python. Kindly check out the post before proceeding. As discussed in that post,here we will discuss the following:

  • Definition of Methods
  • Types of methods in python

What is a Method?

Recall definition of a class, we mentioned that an object has two properties: an attribute and behavior. Now in a simpler term, a method is a way of defining behavior of an object.

Python offers various types of these methods. These are crucial to becoming an efficient programmer and consequently are useful for a data science professional.

Types of Methods in Python

There are basically three types of methods in Python:

  • Instance Method
  • Class Method
  • Static Method

1. Instance method

This is the most commonly used type of method and the purpose of instance methods is to set or get details about instances (objects). They have one default parameter self, although you can add other parameters.
Example 1 of instance method(with default parameter only)

class Car:   def instance_method(self):       return("This is an instance method")

Example 2 (with additional parameter)

class Car:    def instance_method(self,b):       return f 'this is instance method b={b}.'

2. Class Method

The purpose of class methods is to set or get details/status of the class.When defining a class method, you have to identify it as class method with the help of the @classmethod decorator and the class method takes one default parameter cls

Lets create a class method

class Car:    @classmethod   def class_method(cls):      return ("This is a class method")

Let's try access the method

obj1 = Car()obj1.class_method()

Output:

This is a class method

Different from other methods, we can access the class methods directly without creating an instance or object of the class.
using class_name.method_name()
Lets see how:

Car.class_method()

Output:

This is a class method

3.Static Method

Static methods work independently,they do not need to access the class data.Since they are not attached to any class attribute, they cannot get or set the instance state or class state.

To define a static method, we can use the @staticmethod decorator there is no need to pass any special or default parameters.
Example:

class Car:  @staticmethod  def static_method():    return "This is a static method."

Just like the class method, we can call static methods directly, without creating an object/instance of the class:
using class_name.Static_method()


Original Link: https://dev.to/titusnjuguna/methods-in-python-o-o-p-20f8

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To