Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 26cfb93

Browse files
authored
Merge pull request dabeaz-course#50 from pacmansu/patch-1
Fix grammar
2 parents 0f9b715 + d180980 commit 26cfb93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Notes/02_Working_with_data/02_Containers.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ accessed by key names instead of numeric column numbers. This is
341341
often preferred because the resulting code is easier to read later.
342342

343343
Viewing large dictionaries and lists can be messy. To clean up the
344-
output for debugging, considering using the `pprint` function.
344+
output for debugging, consider using the `pprint` function.
345345

346346
```python
347347
>>> from pprint import pprint
@@ -443,9 +443,9 @@ interactively to make sure it works:
443443
### Exercise 2.7: Finding out if you can retire
444444

445445
Tie all of this work together by adding a few additional statements to
446-
your `report.py` program that compute gain/loss. These statements
446+
your `report.py` program that computes gain/loss. These statements
447447
should take the list of stocks in Exercise 2.5 and the dictionary of
448-
prices in Exercise 2.6 and computes the current value of the portfolio
448+
prices in Exercise 2.6 and compute the current value of the portfolio
449449
along with the gain/loss.
450450

451451
[Contents](../Contents.md) \| [Previous (2.1 Datatypes)](01_Datatypes.md) \| [Next (2.3 Formatting)](03_Formatting.md)

0 commit comments

Comments
 (0)