Login
Remember
Register
Ask a Question
What are metaclasses and when are they used?
0
votes
asked
Jan 11, 2021
in
Python
by
SakshiSharma
What are metaclasses and when are they used?
#python-metaclass
#metaclasses
#use-of-metaclass
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 11, 2021
by
SakshiSharma
Metaclasses are classes for classes. A metaclass can specify certain behaviour that is common for many classes for cases when inheritance will be too messy. One common metaclass is ABCMeta, which is used to create abstract classes.
...