diff options
author | Georg Brandl <georg@python.org> | 2009-06-03 21:00:58 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-03 21:00:58 (GMT) |
commit | bdee4947650b9916c79818044d3f4e78263569d1 (patch) | |
tree | 8858bb6c3abef9277bc79e1dd5ff9b84eef4f4d3 /Doc/tutorial | |
parent | 0abc64d71986902c5ff7e7b9d9fd5c83428ca80b (diff) | |
download | cpython-bdee4947650b9916c79818044d3f4e78263569d1.zip cpython-bdee4947650b9916c79818044d3f4e78263569d1.tar.gz cpython-bdee4947650b9916c79818044d3f4e78263569d1.tar.bz2 |
#6190: Remove duplicate paragraph.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/introduction.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index a99db19..3757fc3 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -239,13 +239,6 @@ would print:: This is a rather long string containing\n\ several lines of text much as you would do in C. -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. (The :func:`print` function, described later, -can be used to write strings without quotes or escapes.) - Strings can be concatenated (glued together) with the ``+`` operator, and repeated with ``*``:: |