Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #6239 > unrolled thread

Re: Newbie string questions

Started byChris Guidry <chris@theguidrys.us>
First post2011-05-25 06:13 -0700
Last post2011-05-25 06:13 -0700
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  Re: Newbie string questions Chris Guidry <chris@theguidrys.us> - 2011-05-25 06:13 -0700

#6239 — Re: Newbie string questions

FromChris Guidry <chris@theguidrys.us>
Date2011-05-25 06:13 -0700
SubjectRe: Newbie string questions
Message-ID<mailman.2073.1306329222.9059.python-list@python.org>
On Wednesday, May 25, 2011 9:06:02 AM UTC-4, Matty Sarro wrote:
> can't seem to find some of the items in the documentation. Right now
> what is stumping me... what exactly does %r do? I can't find it in the
> documentation anywhere.

Matty, %r in a format string is very much like %s.  %s calls str(your_object) in order to produce the resulting string.  %r calls repr(your_object).  Generally, you'd want to use %s for strings that will surface to a user, while %r is great for debugging and logging.

Also, if you haven't come across repr(), you should be able to find that in the docs; it's also considered good practice to overload repr() in your own classes in order to provide a useful representation for your objects.

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web