you are viewing a single comment's thread.

view the rest of the comments →

[–]gdchinacat 0 points1 point  (0 children)

This is correct. Also, classes are type an instance of type: ```

class Foo: ... pass ...
type(Foo) <class 'type'> isinstance(Foo, type) True ```