An object (instance) is an instantiation of a class.
obj = Dog()
Here, obj is object of class Dog.
a = Dog()
b = Dog()
a == b # False, They are different objects.
a = Dog()
type(a) # <class '__main__.Dog'>
An object (instance) is an instantiation of a class.
obj = Dog()
Here, obj is object of class Dog.
a = Dog()
b = Dog()
a == b # False, They are different objects.
a = Dog()
type(a) # <class '__main__.Dog'>