What is the difference between __str__ and __repr__ in Python?
|
feedback
|
|
Alex summarized well but, surprisingly, was too succinct. First, let me reiterate the main points in Alex’s post:
Default implementation is useless This is mostly a surprise because Python’s defaults tend to be fairly useful. However, in this case, having a default for
would have been too dangerous (for example, too easy to get into infinite recursion if objects reference each other). So Python cops out. Note that there is one default which is true: if This means, in simple terms: almost every object you implement should have a functional The goal of Let me come right out and say it — I do not believe in debuggers. I don’t really know how to use any debugger, and have never used one seriously. Furthermore, I believe that the big fault in debuggers is their basic nature — most failures I debug happened a long long time ago, in a galaxy far far away. This means that I do believe, with religious fervor, in logging. Logging is the lifeblood of any decent fire-and-forget server system. Python makes it easy to log: with maybe some project specific wrappers, all you need is a
But you have to do the last step — make sure every object you implement has a useful repr, so code like that can just work. This is why the “eval” thing comes up: if you have enough information so “eval(repr(c))==c”, that means you know everything there is to know about c. If that’s easy enough, at least in a fuzzy way, do it. If not, make sure you have enough information about c anyway. I usually use an eval-like format: “MyClass(this=%r,that=%r)” % (self.this,self.that). It does not mean that you can actually construct MyClass, or that those are the right constructor arguments — but it is a useful form to express “this is everything you need to know about this instance”. Note: I used %r above, not %s. You always want to use repr() [or %r formatting character, equivalently] inside repr implementation, or you’re defeating the goal of repr. You want to be able to differentiate MyClass(3) and MyClass(“3″). The goal of Specifically, it is not intended to be unambiguous — notice that Container’s This seems surprising, doesn’t it? It is a little, but how readable would
be? Not very. Specifically, the strings in a container would find it way too easy to disturb its string representation. In the face of ambiguity, remember, Python resists the temptation to guess. If you want the above behavior when you’re printing a list, just
(you can probably also figure out what to do about dictionaries. Summary Implement | |||||||||||
feedback
|
|
Unless you specifically act to ensure otherwise, most classes don't have helpful results for either:
As you see -- no difference, and no info beyond the class and object's
as you see, if you override Other crucial tidbits to know: So, my advice: focus on making | |||||||
feedback
|
|
e.g.
| |||||||||||
feedback
|
|
My rule of thumb: | |||
|
feedback
|
|
From http://pyref.infogami.com/%5F%5Fstr%5F%5F by effbot:
| ||||
|
feedback
|
__repr__when I would have expected it to use__str__. Swing does this when the list of items to be displayed in a JComboBox are objects, rather than strings. See this question – Cam Jackson Nov 22 '11 at 2:19