diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-01-20 15:05:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-01-20 15:05:13 (GMT) |
commit | 078190006821a412a5b1ecb02c8f5be95c706d68 (patch) | |
tree | 4e286395d25bad90b488516abe2651f399554fb4 /Doc/tutorial | |
parent | 5246f66e5e2ac8dc04871f7060235e1d70767458 (diff) | |
download | cpython-078190006821a412a5b1ecb02c8f5be95c706d68.zip cpython-078190006821a412a5b1ecb02c8f5be95c706d68.tar.gz cpython-078190006821a412a5b1ecb02c8f5be95c706d68.tar.bz2 |
expressions -> arguments
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/introduction.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index c07a668..130385b 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -600,12 +600,12 @@ This example introduces several new features. guess when you have typed the last line). Note that each line within a basic block must be indented by the same amount. -* The :func:`print` function writes the value of the expression(s) it is - given. It differs from just writing the expression you want to write (as we did - earlier in the calculator examples) in the way it handles multiple - expressions, floating point quantities, - and strings. Strings are printed without quotes, and a space is inserted - between items, so you can format things nicely, like this:: +* The :func:`print` function writes the value of the argument(s) it is given. + It differs from just writing the expression you want to write (as we did + earlier in the calculator examples) in the way it handles multiple arguments, + floating point quantities, and strings. Strings are printed without quotes, + and a space is inserted between items, so you can format things nicely, like + this:: >>> i = 256*256 >>> print('The value of i is', i) |