diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-01-20 15:09:44 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-01-20 15:09:44 (GMT) |
commit | 648fa19745415738f53adc94f0e3a02d3aaf6e46 (patch) | |
tree | 288a8769013902724cbf1409ed892953c7b29811 /Doc/tutorial | |
parent | 078190006821a412a5b1ecb02c8f5be95c706d68 (diff) | |
download | cpython-648fa19745415738f53adc94f0e3a02d3aaf6e46.zip cpython-648fa19745415738f53adc94f0e3a02d3aaf6e46.tar.gz cpython-648fa19745415738f53adc94f0e3a02d3aaf6e46.tar.bz2 |
end is a keyword argument
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/introduction.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 130385b..4b7f60d 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: |