Skip to content

Commit be2a326

Browse files
committed
fixing stuff
1 parent ab67c5a commit be2a326

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

files.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,9 @@ The reason why we need to use `\\` when we really mean `\` is that
264264
backslash has a special meaning. There are special characters like
265265
`\n`, and `\\` means an actual backslash.
266266

267-
```py
267+
[comment]: <> (GitHub's syntax highlighting screws up with backslashes.)
268+
269+
```
268270
>>> print('C:\some\name')
269271
C:\some
270272
ame

modules.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,10 @@ need to pass the `-i` option to Python, so if you would normally run
8282
will run the file and then give you a `>>>` prompt that we can use
8383
to check what's wrong. If you use IDLE, just run the file normally.
8484

85-
We should end up with something like this:
85+
We should end up with the same error message, and then a `>>>`.
86+
Like this:
8687

87-
```
88+
```py
8889
Traceback (most recent call last):
8990
File "random.py", line 1, in <module>
9091
import random
@@ -399,6 +400,7 @@ Check what a path points to.
399400

400401
```py
401402
import os
403+
import sys
402404

403405
print("You are currently in %s." % os.getcwd())
404406

0 commit comments

Comments
 (0)