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)
link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Yes, you can provide a definition for the special __repr__ method:

class Test:
    def __repr__(self):
        return "I am a Test"

>>> a = Test()
>>> a
I am a Test

In a real example, of course, you would print out some values from object data members.

The __repr__ method is described in the Python documentation here.

link|improve this answer
Thanks! I wonder why I didn't see that in the Python docs... – elijaheac Feb 24 at 3:35
I'll add a link to the relevant docs. – Greg Hewgill Feb 24 at 4:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.