From: Benjamin Peterson Date: Sun, 20 Jan 2013 15:09:44 +0000 (-0500) Subject: end is a keyword argument X-Git-Tag: v3.3.1rc1~324 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=648fa19745415738f53adc94f0e3a02d3aaf6e46;p=python end is a keyword argument --- diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 130385b26d..4b7f60d732 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -611,8 +611,8 @@ This example introduces several new features. >>> print('The value of i is', i) The value of i is 65536 - The keyword *end* can be used to avoid the newline after the output, or end - the output with a different string:: + The keyword argument *end* can be used to avoid the newline after the output, + or end the output with a different string:: >>> a, b = 0, 1 >>> while b < 1000: