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 9a09b1e commit 1020d5dCopy full SHA for 1020d5d
basics/larger-program.md
@@ -45,7 +45,7 @@ def read_questions(filename):
45
with open(questionfile, 'r') as f:
46
for line in f:
47
line = line.strip()
48
- if line: # ignore empty lines
+ if line != '':
49
question, answer = line.split('=')
50
answers[question.strip()] = answer.strip()
51
return answers
@@ -160,7 +160,7 @@ def read_questions(filename):
160
161
162
163
164
165
166
0 commit comments