We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a70e3 commit b6f2fe9Copy full SHA for b6f2fe9
source/intro.md
@@ -397,12 +397,13 @@ Other symbols won't work since they have their own meanings in Python. For examp
397
`-` is the subtraction symbol; if we try to assign a name with
398
the `-` symbol, Python will complain and we will get an error!
399
400
-```
+```{code-cell} ipython3
401
+:tags: ["remove-output"]
402
my-number = 1
403
```
-
404
405
-SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='?
+:tags: ["remove-input"]
406
+print("SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='?")
407
408
409
```{index} object; naming convention
0 commit comments