From: Fred Drake Date: Tue, 14 Aug 2001 19:55:42 +0000 (+0000) Subject: Clarify the prompt in an example. X-Git-Tag: v2.2a3~562 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d3ba10f4b5000d42e84def72306afb633651f4e0;p=thirdparty%2FPython%2Fcpython.git Clarify the prompt in an example. This closes SF bug #450633. --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 2a084ffa9b2f..00d06958e7fa 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -1042,7 +1042,7 @@ Perhaps the most well-known statement type is the \keyword{if} statement. For example: \begin{verbatim} ->>> x = int(raw_input("Please enter a number: ")) +>>> x = int(raw_input("Please enter an integer: ")) >>> if x < 0: ... x = 0 ... print 'Negative changed to zero'