Python's ____ allows classes to be created dynamically, at runtime.
- decorators
- inheritance
- metaclasses
- polymorphism
Python's "metaclasses" allow classes to be created dynamically, at runtime. Metaclasses are responsible for creating and configuring classes.
Loading...
Related Quiz
- How can you pass dynamic data from a Python back-end to a JavaScript variable in the front-end?
- How do you create an empty set in Python?
- Which Python data type is used to represent whole numbers?
- How does the method resolution order (MRO) in Python impact method overloading in the context of inheritance?
- If multiple base classes have methods with the same name, method resolution in a derived class follows the _______ rule.