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

Skip to content

Commit f760db4

Browse files
committed
Fix grammar and typos
1 parent 9c3e2e3 commit f760db4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Notes/01_Introduction/03_Numbers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ x ** y Power
106106
abs(x) Absolute Value
107107
```
108108

109-
Theses are the same operators as Integers, except for the bit-wise operators.
109+
These are the same operators as Integers, except for the bit-wise operators.
110110
Additional math functions are found in the `math` module.
111111

112112
```python
@@ -242,7 +242,7 @@ Months 309
242242

243243
### Exercise 1.11: Bonus
244244

245-
While you’re at it, fix the program to correct the for overpayment that occurs in the last month.
245+
While you’re at it, fix the program to correct for the overpayment that occurs in the last month.
246246

247247
### Exercise 1.12: A Mystery
248248

Notes/01_Introduction/04_Strings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# 1.4 Strings
44

5-
This section introduces way to work with text.
5+
This section introduces ways to work with text.
66

77
### Representing Literal Text
88

@@ -134,7 +134,7 @@ t = s.replace('Hello' , 'Hallo') # 'Hallo world'
134134
**More string methods:**
135135

136136
Strings have a wide variety of other methods for testing and manipulating the text data.
137-
This is small sample of methods:
137+
This is a small sample of methods:
138138

139139
```python
140140
s.endswith(suffix) # Check if string ends with suffix

0 commit comments

Comments
 (0)