Using an instance method inside another instance method in Python
So you’ve created a wonderful instance method for your class. However, you would like to use the instance attributes created in that first instance method, in a second instance method WITHOUT calling the first instance method. In that case you can use the following inside your second instance method: self.first_instance_method()