I am learning OOP in python and following this and this stackoverflow answers and this post
In the blog post writer explained this :
In the init method, self refers to the newly created object; in other class methods, it refers to the instance whose method was called.
I understood first part of this line , but couldn't understand second part of this line
"in other class methods, it refers to the instance whose method was called."
What is the meaning of second line ? can someone please explain with explample?