Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2f2f5ea

Browse files
committed
Fix typo
1 parent f2ebe61 commit 2f2f5ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Notes/01_Introduction/02_Hello_world.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ while num_bills * bill_thickness < sears_height:
241241
day = day + 1
242242
num_bills = num_bills * 2
243243

244-
print('Number of days', days)
244+
print('Number of days', day)
245245
```
246246

247247
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:
257257
day = day + 1
258258
num_bills = num_bills * 2
259259

260-
print('Number of days', days)
260+
print('Number of days', day)
261261
```
262262

263263
Indentation groups the following statements together as the operations that repeat:

0 commit comments

Comments
 (0)