How can you define a class attribute (static) in Python ?
Using the static keyword when defining the attribute in the class
static
You cannot : in Python, every attribute is related to the object instance
By creating a new variable in the class definition
By defining it in the __static__ method
__static__