Thanks to visit codestin.com Credit goes to github.com
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 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