File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -212,8 +212,8 @@ not readily accessible from the current working directory.
212212## Exercises
213213
214214For this exercise involving modules, it is critically important to
215- make sure you are running Python in a proper environment. Modules are
216- usually when programmers encounter problems with the current working
215+ make sure you are running Python in a proper environment. Modules
216+ often present new programmers with problems related to the current working
217217directory or with Python's path settings. For this course, it is
218218assumed that you're writing all of your code in the ` Work/ ` directory.
219219For best results, you should make sure you're also in that directory
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def follow(f):
2020 ...
2121
2222# Consumer
23- for line in follow(f): # Consumes vale from `yield` above
23+ for line in follow(f): # Consumes value from `yield` above
2424 ...
2525```
2626
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Adding 3 4
2929
3030### Local Variables
3131
32- Observe how to inner function refers to variables defined by the outer
32+ Observe how the inner function refers to variables defined by the outer
3333function.
3434
3535``` python
You can’t perform that action at this time.
0 commit comments