]> granicus.if.org Git - python/commitdiff
expressions -> arguments
authorBenjamin Peterson <benjamin@python.org>
Sun, 20 Jan 2013 15:05:13 +0000 (10:05 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sun, 20 Jan 2013 15:05:13 +0000 (10:05 -0500)
Doc/tutorial/introduction.rst

index c07a668ccb9dedb7456135d5dabaef15029a6b52..130385b26d490d7db3d97c520a87d9daee13946d 100644 (file)
@@ -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)