Commit 648fa197 authored by Benjamin Peterson's avatar Benjamin Peterson

end is a keyword argument

parent 07819000
......@@ -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:
......
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