Skip to content
Advertisement

Why do I get different results when using ‘hasattr’ function on the class and its object for the same attribute? [closed]

When I execute this code:

JavaScript

I get this output:

JavaScript

Everything is clear to me except for the second line. Why do I get False when I execute the hasattr function on the class while I got True when using it with the object for the same attribute?

Advertisement

Answer

Be careful cls is typically used for classmethods for example like this:

JavaScript

So it is better to not use it for your own class names to avoid confusion.

Comming to your question. In your first block you use a reference to the class itself. So here only static variables are visible as __init__ has not been called.

JavaScript

In the second block you use an instance of the class. Here, __init__() was executed and therefore obj.a exists.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement