Instance

An instance is a specific realization of an object, as in a house vs. the plans.

Python Example

For more Python class related examples, see:

# Define a class containing class variables.
class Dog:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    

# Create an object instance of the class.
my_dog = Dog("Daisy", 3)

# Access the instance variables.
print(my_dog.name, my_dog.age)