8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1020d5d commit 854f9c9Copy full SHA for 854f9c9
basics/larger-program.md
@@ -42,7 +42,7 @@ Let's start with the function that reads the question file:
42
```python
43
def read_questions(filename):
44
answers = {}
45
- with open(questionfile, 'r') as f:
+ with open(filename, 'r') as f:
46
for line in f:
47
line = line.strip()
48
if line != '':
@@ -157,7 +157,7 @@ Now the whole program looks like this:
157
158
159
160
161
162
163
0 commit comments