When I print the class of type
, I again get the class type
in console.
print(type.__class__)
Result: <class 'type'>
I am curious if class
of type
give type
for a reason or is it just a way to say that this is the end of class chain.
I tried to print class of type and got the result type again.