Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!selfless.tophat.at!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'wed,': 0.03; 'formatting': 0.07; 'function:': 0.09; 'subject:string': 0.09; 'pm,': 0.10; '25,': 0.12; 'received:209.85.214.174': 0.14; 'received:mail- iw0-f174.google.com': 0.14; 'wrote:': 0.14; 'angelico': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'repr': 0.16; 'stumping': 0.16; 'subject:Newbie': 0.16; 'subject:questions': 0.16; 'header:In-Reply-To:1': 0.21; 'message- id:@mail.gmail.com': 0.28; 'received:209.85.214': 0.28; 'url:library': 0.31; 'does': 0.33; 'to:addr:python-list': 0.33; 'chris': 0.34; 'do?': 0.35; 'received:google.com': 0.37; 'received:209.85': 0.37; 'url:docs': 0.37; 'url:python': 0.38; 'url:org': 0.38; 'subject:: ': 0.38; 'received:209': 0.39; 'to:addr:python.org': 0.39; 'url:functions': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=FcQ1OfTZCkZ0WZrVgQif3Y5s9FbHeOIMgdhCHhsWSUM=; b=WDeGqSHEJ+qgkAAkMyxYUBU39OiA81++Lv3EFBCL40UBRrS7/nxSZ9BozsDlcn90sY BgzOCmG89KQvsO3PphQjVf6VI3eRErt4Xr5Zk90HsN+/GvKr94/hfFX9AW4et1v9zYWf iU85sp+C7dMeKF2N1AnIP3/pzYm7t0J66IDnI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=bQAuFd64TE81qcFAJh+fWZ8Ftr3ChZsliMhmLysQyCzYW70HmQb0mcuQ+t2tcN2Q9O oGH1/B1PcWUMiju0ygVyTrFmrvoacRAOc2wnUyIBUslskU0yiPPD/bC2HNIxDLefaFGY haL5/aMQIZKXnr5pYzlcEtnZMAmfLdC/QO7RE= MIME-Version: 1.0 In-Reply-To: References: Date: Wed, 25 May 2011 23:09:45 +1000 Subject: Re: Newbie string questions From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 8 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1306328988 news.xs4all.nl 49174 [::ffff:82.94.164.166]:32841 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:6236 On Wed, May 25, 2011 at 11:06 PM, Matty Sarro wrote: > Right now what is stumping me... what exactly does %r do? You're talking about the formatting operator? It's like the repr function: http://docs.python.org/library/functions.html#repr Chris Angelico