Commit b9dddf3b authored by Benjamin Peterson's avatar Benjamin Peterson

end is a keyword argument

parent 262fd60e
...@@ -611,8 +611,8 @@ This example introduces several new features. ...@@ -611,8 +611,8 @@ This example introduces several new features.
>>> print('The value of i is', i) >>> print('The value of i is', i)
The value of i is 65536 The value of i is 65536
The keyword *end* can be used to avoid the newline after the output, or end The keyword argument *end* can be used to avoid the newline after the output,
the output with a different string:: or end the output with a different string::
>>> a, b = 0, 1 >>> a, b = 0, 1
>>> while b < 1000: >>> while b < 1000:
......
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