Definition
The type of a Python object determines what kind of object it is; every
object has a type. An object’s type is accessible as its
__class__ attribute or can be retrieved with
type(obj).
The type of a Python object determines what kind of object it is; every
object has a type. An object’s type is accessible as its
__class__ attribute or can be retrieved with
type(obj).