We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2ebe61 commit 2f2f5eaCopy full SHA for 2f2f5ea
Notes/01_Introduction/02_Hello_world.md
@@ -241,7 +241,7 @@ while num_bills * bill_thickness < sears_height:
241
day = day + 1
242
num_bills = num_bills * 2
243
244
-print('Number of days', days)
+print('Number of days', day)
245
```
246
247
The statements indented below the `while` will execute as long as the expression after the `while` is `true`.
@@ -257,7 +257,7 @@ while num_bills * bill_thickness < sears_height:
257
258
259
260
261
262
263
Indentation groups the following statements together as the operations that repeat:
0 commit comments