0
What is the use of self in python??
2 Answers
+ 8
Pratik Kumbhar
See SoloLearn's Python course it has an lesson in OOP features where self method is explained well
'All methods must have self as their first it isn't explicitly passed, Python adds the self argument to the list for you;
you do not need to include it when you call the methods. Within a method definition, self refers to the instance calling the method.'
It is somehow same working like "this" of C++