Message335905
| 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:34 | Amit Amely | set | recipients: + Amit Amely, docs@python |
| 2019-02-19 08:45:34 | Amit Amely | set | messageid: <1550565934.5.0.314572203435.issue36032@roundup.psfhosted.org> |
| 2019-02-19 08:45:34 | Amit Amely | link | issue36032 messages |
| 2019-02-19 08:45:34 | Amit Amely | create | |