instance
An instance is a concrete occurrence of a class—a unique object created using a class as its template. When you create an instance, you’re making a specific copy of the class with its own set of data attributes.
Python
class Dog:
pass
spot = Dog() # spot is an instance of the Dog class