Python OOPS: Class method, Object Method, Static Method

Опубликовано: 16 Июль 2026
на канале: Programming with Eddie
37
2

Hello Guys,
In this video, I have explained about class method,object method, and static method in brief.
It is a concept of the topic of Class and Object.
I have given detailed description of all these methods and every thing that I have explained is in Hindi.
So you won't feel any problem in understanding these concept.
You all need to understand these concept so that you can create your own class and object programs in python programming language.

There are 3 different kinds of method:
1. Class method
2. Instance method
3. Static method

Class method are written with @classmethod decorator. I will tell about decorators later. Then we write the class method with first argument after function name as "cls".
Static method are written with @staticmethod decorator. I will tell about decorators later. Static method don't have any use of class and object and they perform task that are independent of class and object.
Instance method are the most used method. And the first argument of these method is "self", which uses the reference of the object.

As I am a new creator, I need your support to grow my channel.

So if you liked my video please hit the like button
Subscribe my channel for more videos like this.
And share my videos to your friends who want to learn more about Python Programming Language!