File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ x ** y Power
106
106
abs(x) Absolute Value
107
107
```
108
108
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.
110
110
Additional math functions are found in the ` math ` module.
111
111
112
112
``` python
@@ -242,7 +242,7 @@ Months 309
242
242
243
243
### Exercise 1.11: Bonus
244
244
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.
246
246
247
247
### Exercise 1.12: A Mystery
248
248
Original file line number Diff line number Diff line change 2
2
3
3
# 1.4 Strings
4
4
5
- This section introduces way to work with text.
5
+ This section introduces ways to work with text.
6
6
7
7
### Representing Literal Text
8
8
@@ -134,7 +134,7 @@ t = s.replace('Hello' , 'Hallo') # 'Hallo world'
134
134
** More string methods:**
135
135
136
136
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:
138
138
139
139
``` python
140
140
s.endswith(suffix) # Check if string ends with suffix
You can’t perform that action at this time.
0 commit comments