diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-11-08 01:53:13 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-11-08 01:53:13 (GMT) |
commit | a0fa1ce3350653f847aa639c4164dcf2f9aee56b (patch) | |
tree | ec76ea5ed67bf097e4fe216bfdc8478e34dfbb3e /Doc/tutorial | |
parent | ab19bd449a796ed81546d3637f1857697ff2768a (diff) | |
download | cpython-a0fa1ce3350653f847aa639c4164dcf2f9aee56b.zip cpython-a0fa1ce3350653f847aa639c4164dcf2f9aee56b.tar.gz cpython-a0fa1ce3350653f847aa639c4164dcf2f9aee56b.tar.bz2 |
Fix Issue 10303: a small clarification in the tutorial.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/introduction.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 11ed58e..6614dd2 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -194,8 +194,8 @@ The interpreter prints the result of string operations in the same way as they are typed for input: inside quotes, and with quotes and other funny characters escaped by backslashes, to show the precise value. The string is enclosed in double quotes if the string contains a single quote and no double quotes, else -it's enclosed in single quotes. Once again, the :func:`print` function -produces the more readable output. +it's enclosed in single quotes. The :func:`print` function produces a more +readable output for such input strings. String literals can span multiple lines in several ways. Continuation lines can be used, with a backslash as the last character on the line indicating that the |