This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Amit Amely
Recipients Amit Amely, docs@python
Date 2019-02-19.08:45:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1550565934.5.0.314572203435.issue36032@roundup.psfhosted.org>
In-reply-to
Content
This is the tutorial text:

>>> prefix = 'Py'
>>> prefix 'thon'  # can't concatenate a variable and a string literal
  ...
SyntaxError: invalid syntax
>>> ('un' * 3) 'ium'
  ...
SyntaxError: invalid syntax

This is the actual result:

>>> prefix = 'Py'
>>> prefix 'thon'  # can't concatenate a variable and a string literal
  File "<stdin>", line 1
    prefix 'thon'  # can't concatenate a variable and a string literal
                ^
SyntaxError: invalid syntax
History
Date User Action Args
2019-02-19 08:45:34Amit Amelysetrecipients: + Amit Amely, docs@python
2019-02-19 08:45:34Amit Amelysetmessageid: <1550565934.5.0.314572203435.issue36032@roundup.psfhosted.org>
2019-02-19 08:45:34Amit Amelylinkissue36032 messages
2019-02-19 08:45:34Amit Amelycreate