So what I have here is one function, which is in an object:
class objectOne:
def funct1(self):
#Do Stuff
And what I would like to do is have it so when I create two instaces of the object:
dog = objectOne()
cat = objectOne()
When the variable "animal" i have created contains cat, then it would run:
cat.funct1()
And when the variable contains dog, then it would run:
dog.funct1()
Any way to do this? Thanks in advance guys.
Ev :D
(To clarify: I can't use an if statement here because as I gain more and more different instances of the object, I don't want to have to add stuff, my final code to call the object's function should be something like:
animal.funct1()
In which animal is the variable, not an instance of the object. Thanks once again guys!)
animal = cat, then whenever you doanimal.funct1()you will be calling the method on the cat instance. – Daniel Roseman Oct 13 '11 at 8:45animalwould contain the name of the object (animal = 'cat'). At least that's how I understood it fromthe variable "animal" i have created contains cat– rplnt Oct 13 '11 at 8:49