Commit 3542c059 authored by Raymond Hettinger's avatar Raymond Hettinger

Fix spacing in loop example

parent c111eba3
...@@ -2060,9 +2060,9 @@ can be paired with the \function{zip()} function. ...@@ -2060,9 +2060,9 @@ can be paired with the \function{zip()} function.
>>> for q, a in zip(questions, answers): >>> for q, a in zip(questions, answers):
... print 'What is your %s? It is %s.' % (q, a) ... print 'What is your %s? It is %s.' % (q, a)
... ...
What is your name ? It is lancelot . What is your name? It is lancelot.
What is your quest ? It is the holy grail . What is your quest? It is the holy grail.
What is your favorite color ? It is blue . What is your favorite color? It is blue.
\end{verbatim} \end{verbatim}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment