From: Georg Brandl Date: Sat, 30 Sep 2006 07:24:53 +0000 (+0000) Subject: Bug #1567375: a minor logical glitch in example description. X-Git-Tag: v2.4.4c1~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b3a7fc75e342fbff7b429acba67e8b18b4cbfa5;p=thirdparty%2FPython%2Fcpython.git Bug #1567375: a minor logical glitch in example description. (backport from rev. 52053) --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 94aebf8a8640..4230c763f00f 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -3017,6 +3017,7 @@ Here are two ways to write a table of squares and cubes: 8 64 512 9 81 729 10 100 1000 + >>> for x in range(1,11): ... print '%2d %3d %4d' % (x, x*x, x*x*x) ... @@ -3032,8 +3033,9 @@ Here are two ways to write a table of squares and cubes: 10 100 1000 \end{verbatim} -(Note that one space between each column was added by the way -\keyword{print} works: it always adds spaces between its arguments.) +(Note that in the first example, one space between each column was +added by the way \keyword{print} works: it always adds spaces between +its arguments.) This example demonstrates the \method{rjust()} method of string objects, which right-justifies a string in a field of a given width by padding