Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e7ce184

Browse files
committed
merge 3.3
2 parents c7ca59a + 0781900 commit e7ce184

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Doc/tutorial/introduction.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)