Use SyntaxError invalid range in tutorial introduction example (GH-93031)

Use output from a 3.10+ REPL, showing invalid range, for the
SyntaxError examples in the tutorial introduction page.

Automerge-Triggered-By: GH:iritkatriel
This commit is contained in:
Eddie Hebert 2022-09-30 04:59:46 -04:00 committed by GitHub
parent 83a3de4e06
commit 86a3be207d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -234,12 +234,12 @@ This only works with two literals though, not with variables or expressions::
>>> prefix 'thon' # can't concatenate a variable and a string literal
File "<stdin>", line 1
prefix 'thon'
^
^^^^^^
SyntaxError: invalid syntax
>>> ('un' * 3) 'ium'
File "<stdin>", line 1
('un' * 3) 'ium'
^
^^^^^
SyntaxError: invalid syntax
If you want to concatenate variables or a variable and a literal, use ``+``::

View File

@ -0,0 +1 @@
Update tutorial introduction output to use 3.10+ SyntaxError invalid range.