I google this question, but unfortunately I can't find answer of this question. If you have an article related to this question, pls share it.
class Dog:
    """A simple attempt to model a dog"""
    def __init__(self,name,age):
        self.name = name
        self.age = age
my_dog = Dog("Bob",8)
What is the instance in this question?