How type() Works as a Metaclass in Python
In my years of developing enterprise software, I have often seen developers get confused when they realize type() does more than just identify an object. It took me a few deep-dive sessions into Python’s internals to realize that type is actually the “class of all classes”, the ultimate metaclass. In this tutorial, I will show … Read more >>