Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dabeaz committed Jun 21, 2020
1 parent f2ebe61 commit 2f2f5ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Notes/01_Introduction/02_Hello_world.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ while num_bills * bill_thickness < sears_height:
day = day + 1
num_bills = num_bills * 2

print('Number of days', days)
print('Number of days', day)
```

The statements indented below the `while` will execute as long as the expression after the `while` is `true`.
Expand All @@ -257,7 +257,7 @@ while num_bills * bill_thickness < sears_height:
day = day + 1
num_bills = num_bills * 2

print('Number of days', days)
print('Number of days', day)
```

Indentation groups the following statements together as the operations that repeat:
Expand Down

0 comments on commit 2f2f5ea

Please sign in to comment.