Is there a way to change how an object appears when displayed at the Python interpreter? For example:
>>> test = myobject(2)
>>> test
'I am 2'
OR
>>> test = myobject(2)
>>> test
myobject(2)
|
Is there a way to change how an object appears when displayed at the Python interpreter? For example:
OR
| |||
|
feedback
|
|
Yes, you can provide a definition for the special
In a real example, of course, you would print out some values from object data members. The | |||||
|
feedback
|