class student_kit():
#instance attributes
def __init__(self,name):
self.name= name
Alex=student_kit('Alex') # object declaration
print(callable(student_kit)) # True
print(callable(Alex)) # False , object is not callable
#Alex() # this will generate error
The last line will generate error like this.
TypeError: 'student_kit' object is not callable
The class student_kit is callable, the object Alex is not callable.