From: Raymond Hettinger Date: Tue, 25 Jun 2002 03:17:03 +0000 (+0000) Subject: Fix spacing in loop example X-Git-Tag: v2.3c1~5231 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7951f60f456cf7ef3b9671c7afceca47b2fb0ec4;p=python Fix spacing in loop example --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index e1ccffe294..0dc53ef6bb 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -2060,9 +2060,9 @@ can be paired with the \function{zip()} function. >>> for q, a in zip(questions, answers): ... print 'What is your %s? It is %s.' % (q, a) ... -What is your name ? It is lancelot . -What is your quest ? It is the holy grail . -What is your favorite color ? It is blue . +What is your name? It is lancelot. +What is your quest? It is the holy grail. +What is your favorite color? It is blue. \end{verbatim}