Defining constants in python class, is self really needed?

When you assign to names in the class body, you’re creating attributes of the class. You can’t refer to them without referring to the class either directly or indirectly. You can use Foo.VAGUE as the other answers say, or you can use self.VAGUE. You do not have to assign to attributes of self.

Usually, using self.VAGUE is what you want because it allows subclasses to redefine the attribute without having to reimplement all the methods that use them — not that that seems like a sensible thing to do in this particular example, but who knows.

Leave a Comment