In Python, if you don’t specify a metaclass for a new class, it will implicitly use ____ as its metaclass.

  • base
  • metaclass
  • object
  • type
In Python, if you don't specify a metaclass for a new class, it will implicitly use type as its metaclass. type is the default metaclass for all classes unless otherwise specified.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *