end is a keyword argument

This commit is contained in:
Benjamin Peterson 2013-01-20 10:09:44 -05:00
parent 0781900068
commit 648fa19745
1 changed files with 2 additions and 2 deletions

View File

@ -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: