+2 votes
in Class 12 by kratos

Explain the importance of self in Python classes.

1 Answer

+1 vote
by kratos
 
Best answer

self is an object reference to the object itself, therefore, they are same. Python methods are not called in the context of the object itself, self in Python may be used to deal with custom object models.

...