FAQ: __str__ vs __repr__

J

Jan Danielsson

Sorry, but I Just Don't Get It. I did search the 'net, I did read the
FAQ, but I'm too dumb to understand.

As far as I can gather, __str__ is just a representation of the
object. For instance:

class ServerConnection:
def __str__(self):
buf = "Server: " + self.name + "\n"
buf += "Sent bytes: " + str(self.sentBytes) + "\n"
buf += "Recv bytes: " + str(self.recvBytes) + "\n"
return buf

However, I don't understand what __repr__ should be. There's a phrase
in the documentation which makes it highly confusing for a beginner like
me: "If at all possible, this should look like a valid Python expression
that could be used to recreate an object with the same value (given an
appropriate environment).". What does that mean? Does it mean that I
should return:

def __str__(self):
buf = "self.name=" + self.name + "\n"
buf += "self.sentBytes=" + str(self.sentBytes) + "\n"
buf += "self.recvBytes=" + str(self.recvBytes) + "\n"
return buf

..or is there some other "valid Python expression" format which I
have yet to encounter?
 
?

=?iso-8859-1?q?S=E9bastien_Boisg=E9rault?=

Jan Danielsson a écrit :
Sorry, but I Just Don't Get It. I did search the 'net, I did read the
FAQ, but I'm too dumb to understand.

As far as I can gather, __str__ is just a representation of the
object.

.... yep, and this representation is built for human eyes. Don't
worry too much if it does not display every bit of information
contained in your object. Pretty printing rules ...
"it's a bad idea"
However, I don't understand what __repr__ should be.

It is an *exact* (if possible) description of the object's content,
nicely packaged into a string.
'"it\'s a bad idea"'

There's a phrase
in the documentation which makes it highly confusing for a beginner like
me: "If at all possible, this should look like a valid Python expression
that could be used to recreate an object with the same value (given an
appropriate environment).".

It means that the equality eval(repr(x)) == x should hold.

Cheers,

SB
 
?

=?iso-8859-1?q?S=E9bastien_Boisg=E9rault?=

Errata:
"it's a bad idea"
'"it\'s a bad idea"'


SB
 
A

Andreas Kostyrka

Well, It means that eval(repr(x)) == x if at all possible.
Basically:
repr('abc') -> 'abc'
str('abc') -> abc

You'll notice that 'abc' is a valid python expression for the string,
while abc is not a valid string expression.

Andreas
 
P

Peter Hansen

Jan said:
Sorry, but I Just Don't Get It. I did search the 'net, I did read the
FAQ, but I'm too dumb to understand.

As far as I can gather, __str__ is just a representation of the
object. [snip]
However, I don't understand what __repr__ should be.

__repr__ shouldn't be anything, if you don't have an actual need for it.
Neither should __str__.

But if you have a need for something, and you're not sure which to use,
think of it this way. If you are trying to output a representation of
the object for use in debugging, such as in a debug log file, then use
__repr__ and make it look like whatever you want, but preferably
following the <Angle brackets convention> like all the builtin stuff.

If you have a need for some representation of the data to use in your
application for non-debugging purposes, such as perhaps to display data
to a user, or to write data to an output file, then __str__ is a good
candidate, and you can make it look like whatever you need.

Just don't waste your time defining either a __repr__ or a __str__ just
because those methods exist. That won't do anyone any good.

-Peter
 
D

Donn Cave

Jan Danielsson said:
Sorry, but I Just Don't Get It. I did search the 'net, I did read the
FAQ, but I'm too dumb to understand.

As far as I can gather, __str__ is just a representation of the
object.

No, it is not. It is a conversion to string. The result has
no trace of the original object, per se -- in principle, many
different kinds of object could yield the same result. Suppose
str(x) -> "42". Is x an int? a string? an XMLParseResult?
AnswerToLifeTheUniverseAndEverything? You don't want to know,
that's why you use str().

The "friendly" idea is vacuous if you look hard enough at it,
and won't really help.
However, I don't understand what __repr__ should be. There's a phrase
in the documentation which makes it highly confusing for a beginner like
me: "If at all possible, this should look like a valid Python expression
that could be used to recreate an object with the same value (given an
appropriate environment).". What does that mean?

It's kind of a bad idea that the Python world isn't ready to
let go of yet.

repr() is really the representation of the object. If you
look at the result of repr(x), you should indeed see some
clue to the original object. I guess this is what gives
people the idea that str() is friendly, because as a rule
users are not interested in the original object -- but
there are exceptions, for example you may find the quotes
useful around a string, depending on the situation. The
object information also leads to the marshalling idea, but
of course this isn't (and can't be) implemented for many
objects so we can't expect this to work reliably with
random objects. The price we pay for the notion is mostly
in the "fix" for float repr, which now displays the float
in all its imprecise glory and routinely confounds people
who don't understand what that's about.

Donn Cave, (e-mail address removed)
 
T

Terry Hancock

Jan Danielsson a écrit :
It is an *exact* (if possible) description of the object's content,
nicely packaged into a string.

However, this is often not the case. Frequently __repr__ will
return something like this:
'<_sre.SRE_Pattern object at 0x401a89b0>'

So don't obsess over it. For many objects it isn't worth
the trouble, and for others, str() and repr() are sensibly the
same thing, but for some, the distinction is useful. That's
all.
 
D

Dave Benjamin

Jan said:
Sorry, but I Just Don't Get It. I did search the 'net, I did read the
FAQ, but I'm too dumb to understand.

Say we define a string "s" as follows:

If we print "s", we see its string form (__str__):
hello

However, if we just examine "s", we see its representation (__repr__):
'hello'

This can be verified by calling str() and repr() on the string:
"'hello'"

So, the result of repr() includes quotes, whereas the result of str()
does not. This has useful properties when the object is part of a more
complex structure. For instance, these two expressions print out the same:
>>> [s, s] ['hello', 'hello']
>>> print [s, s]
['hello', 'hello']

That's because, in either case, the repr() form is used. If Python only
had str(), we would probably expect str(s) = s, so we'd instead see
something like this imaginary snippet:
>>> [s, s] [hello, hello]
>>> repr([s, s])
'[hello, hello]'

So, the convention in Python is that repr() returns a string that, when
evaluated, returns the original object. This is not always easy or
possible to do, but if you can do it, your objects will print nicely
when nested within Python's built-in data structures. Python's actual
behavior is this:
"['hello', 'hello']"

And therefore:
['hello', 'hello']

Also worth noting is that if you define __repr__, the default behavior
of __str__ is to delegate to that definition, so if you only want to
define one, it's often more convenient to just define __repr__.

Dave
 
J

John Roth

Jan Danielsson said:
Sorry, but I Just Don't Get It. I did search the 'net, I did read the
FAQ, but I'm too dumb to understand.

As far as I can gather, __str__ is just a representation of the
object. For instance:

class ServerConnection:
def __str__(self):
buf = "Server: " + self.name + "\n"
buf += "Sent bytes: " + str(self.sentBytes) + "\n"
buf += "Recv bytes: " + str(self.recvBytes) + "\n"
return buf

However, I don't understand what __repr__ should be. There's a phrase
in the documentation which makes it highly confusing for a beginner like
me: "If at all possible, this should look like a valid Python expression
that could be used to recreate an object with the same value (given an
appropriate environment).". What does that mean? Does it mean that I
should return:

def __str__(self):
buf = "self.name=" + self.name + "\n"
buf += "self.sentBytes=" + str(self.sentBytes) + "\n"
buf += "self.recvBytes=" + str(self.recvBytes) + "\n"
return buf

..or is there some other "valid Python expression" format which I
have yet to encounter?

str() should be something that's meaningful to a human being when
it's printed or otherwise rendered. repr() should be something that
can round trip: that is, if you feed it into eval() it should reproduce
the object.

You can't always achieve either one, especially with very
complex objects, but that's the goal.

John Roth
 
D

Donn Cave

Quoth "John Roth" <[email protected]>:
....
| str() should be something that's meaningful to a human being when
| it's printed or otherwise rendered.

I can't believe how many people cite this explanation - meaningful,
friendly, pretty to a human being. What on earth does this mean,
that couldn't be said more unambiguously?

According to my impression of common applications for Python programs,
rarely would anyone be looking at the output for esthetic gratification.
I mean, imagine your users casting an appraising eye over the contours
of a phrase emitted by the program, and praising the rhythmic effect of
the punctuation it chose to use, or negative space created by tabs. heh.

Whether for human eyes or any destination, properly formed output will
carry the information that is required for the application, in a complete
and unambiguous way and in the format that is most readily processed,
and it will omit extraneous information. Are we saying anything other
than this?

Donn Cave, (e-mail address removed)
 
J

John Roth

Donn Cave said:
Quoth "John Roth" <[email protected]>:
...
| str() should be something that's meaningful to a human being when
| it's printed or otherwise rendered.

I can't believe how many people cite this explanation - meaningful,
friendly, pretty to a human being. What on earth does this mean,
that couldn't be said more unambiguously?

According to my impression of common applications for Python programs,
rarely would anyone be looking at the output for esthetic gratification.
I mean, imagine your users casting an appraising eye over the contours
of a phrase emitted by the program, and praising the rhythmic effect of
the punctuation it chose to use, or negative space created by tabs. heh.

Whether for human eyes or any destination, properly formed output will
carry the information that is required for the application, in a complete
and unambiguous way and in the format that is most readily processed,
and it will omit extraneous information. Are we saying anything other
than this?

I thought that's what I said. I fail to see how you derive any other
meaning from it. Possibly less verbiage and a concerete example
of how "meaningful" equates to "esthetics that obfustificate understanding"
and does not equate to "immediately useable, without having to wade
through a lot of irrelvant mental transformations" would help my
understanding.

John Roth
 
D

Donn Cave

"John Roth said:
I thought that's what I said. I fail to see how you derive any other
meaning from it. Possibly less verbiage and a concerete example
of how "meaningful" equates to "esthetics that obfustificate understanding"
and does not equate to "immediately useable, without having to wade
through a lot of irrelvant mental transformations" would help my
understanding.

Not sure if that's a question. Maybe I can state this more clearly.

Observation: Most who responded to this question offered an
explanation of __str__ like "friendly to a human being",
using one or more of meaningful, friendly or pretty. The
online manual uses "informal".

1. These words are woefully ambiguous, to be applied in computer
programming. While there may be some kind of absolute basis
for esthetic appreciation, that clearly doesn't apply here,
and terms like this have to be strictly relative to context
created by the application.
Summary: By itself, friendly to a human being is a vacuous
notion and doesn't help anyone.

2. If we attempt to support the explanation with a more rigorous
examination of the principles and how they'd apply to a string
conversion, it's hard to make this come out favoring str over
repr. In the end, they should both be meaningful and friendly,
by any uncontorted definition of those terms.
Summary: To the extent that they have any meaning, they are
probably applied incorrectly as an explanation of __str__.

So, among other conclusions, the documentation should be changed
to offer a more sensible explanation of __str__.

Donn Cave, (e-mail address removed)
 
S

Simon Brunning

__repr__ shouldn't be anything, if you don't have an actual need for it.
Neither should __str__.

Oh, I don't know. __str__ is so frequently useful in debugging and
logging that I always try and do something useful with it.
 
P

Peter Hansen

Simon said:
Oh, I don't know. __str__ is so frequently useful in debugging and
logging that I always try and do something useful with it.

Interesting: for the same purpose, I would define __repr__.

But I still define it only when I actually care about the details, since
otherwise the default __repr__ is always there. Spending time figuring
out a potentially more useful __str__/__repr__ (how nice that we've
confused the issue of which to use, again! ;-) ) is not my idea of a
good use of time, what with YAGNI and all from XP...

-Peter
 
S

Skip Montanaro

Simon> Oh, I don't know. __str__ is so frequently useful in debugging
Simon> and logging that I always try and do something useful with it.

And sometimes __repr__ inherited from a base class doesn't tell you much.
If you inherit from gobject (the basic object in PyGtk), the repr is
something like

<Future object (__main__+Base) at 0x851384c>

That is, it identifies the class name, its inheritance hierarchy (Future ->
Base -> __main__ in this case) and its memory address. That's perhaps
useful by itself in some contexts, and I can understand that the PyGtk folks
couldn't really stuff more specific info in there, but it does nothing to
distinguish one instance's state from that of another.

Skip
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,577
Members
45,052
Latest member
LucyCarper

Latest Threads

Top