Skip to content

Commit 8b73391

Browse files
authored
Update 03-readfile.md
1 parent b1cfb82 commit 8b73391

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

responses/03-readfile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Next, remove the other comments by deleting `#` from the start of the other four
1414

1515
Here we are opening the `quotes.txt` file, reading all the lines into a new _variable_ called `quotes`, then closing the file (defined by the variable `f`). Finally, we print out the quotes.
1616

17-
You can run this code using `python get-quote.py` and we'll get a dump of _all_ the quotes in the quotes file. That's because Python stored them all in an _array_, which is a single variable that holds a list of values.
17+
You can run this code and we'll get a dump of _all_ the quotes in the quotes file. That's because Python stored them all in an _array_, which is a single variable that holds a list of values.
1818

1919
## Print the first element of an array
2020

@@ -27,6 +27,6 @@ The square brackets tell Python that we want a specific item in the array. Since
2727

2828
## Comment with the first quote
2929

30-
Run your code using `python get-quote.py` and copy the value to your clipboard.
30+
Run your code and copy the value to your clipboard.
3131

3232
Paste the quote as a comment here and I'll follow up with next steps!

0 commit comments

Comments
 (0)