Consider this class:
class foo(object):
pass
The default string representation looks something like this:
>>> str(foo)
"<class '__main__.foo'>"
How can I make this display a custom string?
|
|
|
Implement
|
|||||||||||||
|
|
|||||||||
|
|
Bjorn, It sounds like you would like a static variable that can be set for the entire class and not for an individual instance. Look here for more information on how to do that. Static class variables in Python |
|||
|
|