Use output from a 3.10+ REPL, showing invalid range, for the
SyntaxError examples in the tutorial introduction page.
Automerge-Triggered-By: GH:iritkatriel
>>> 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 ``+``::
--- /dev/null
+Update tutorial introduction output to use 3.10+ SyntaxError invalid range.