Skip to content

Commit 3cdddfd

Browse files
committed
formatting
1 parent ccafa4e commit 3cdddfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ think about them as data containers for now.
1515

1616
We can also change the value of a variable after setting it.
1717

18-
```
18+
```py
1919
>>> a = 2
2020
>>> a
2121
2
@@ -24,7 +24,7 @@ We can also change the value of a variable after setting it.
2424

2525
Trying to access a variable that is not defined is an error.
2626

27-
```
27+
```py
2828
>>> thingy
2929
Traceback (most recent call last):
3030
File "<stdin>", line 1, in <module>

0 commit comments

Comments
 (0)