Python Special Attributes
Python has multiple special attributes that are defined per default for each class such as __name__, __module__, __dict__, __bases__, __doc__, and __annotations__. Each of these special attributes has a special meaning as shown in the following table: Attribute Type Description __name__ str The name of the class __module__ str The string name of the module … Read more