File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -600,12 +600,12 @@ This example introduces several new features.
600600 guess when you have typed the last line). Note that each line within a basic
601601 block must be indented by the same amount.
602602
603- * The :func: `print ` function writes the value of the expression (s) it is
604- given. It differs from just writing the expression you want to write (as we did
605- earlier in the calculator examples) in the way it handles multiple
606- expressions, floating point quantities,
607- and strings. Strings are printed without quotes, and a space is inserted
608- between items, so you can format things nicely, like this::
603+ * The :func: `print ` function writes the value of the argument (s) it is given.
604+ It differs from just writing the expression you want to write (as we did
605+ earlier in the calculator examples) in the way it handles multiple arguments,
606+ floating point quantities, and strings. Strings are printed without quotes ,
607+ and a space is inserted between items, so you can format things nicely, like
608+ this::
609609
610610 >>> i = 256*256
611611 >>> print('The value of i is', i)
You can’t perform that action at this time.
0 commit comments