Thread Reader
Afiz āš”ļø

Afiz āš”ļø
@itsafiz

Nov 25, 2022
6 tweets
Twitter

Object Oriented Programming in Python Methods in Python (with code snippets) In this thread, we will discuss 3 types of methods with examples 1. Instance 2. Class 3. Static A Thread šŸ§µšŸ‘‡

1. Instance methods: These methods are bound to the instance(object) of the class. Used to access/modify the object state. If we use instance variables inside a method, such methods are called instance methods. It must have a self parameter to refer to the current object
2. Class Methods Class methods work with class variables and are accessible using the name rather than its object. @ć‚Æćƒ©ć‚¹ćƒ”ć‚½ćƒƒćƒ‰ decorator is used to create class methods. cls is used to refer to the class just like self is used to refer to the object of the class.
3. Static Methods usually limited to class. They have no direct relation to class or instance variables. They are used as utility functions inside the class or when we don't want the inherited classes. `@staticmethod` decorator is used to define static methods.
Find the source code of this thread šŸ‘‡ Star the repo if you like the content. ā­ļø github.com/afizs/python-nā€¦
In future threads, we are going to break down each method type. Follow me @Afiz āš”ļø if you don't want to miss it.
Afiz āš”ļø

Afiz āš”ļø

@itsafiz
Sr. Software Engineer | Here to Help you learn Python, Data Science and Machine Learning šŸš€
Follow on Twitter
Missing some tweets in this thread? Or failed to load images or videos? You can try to .