@@ -45,7 +45,7 @@ In general we can categorize built-in functions to:
4545 - Variable’s scope/location: ` locals ` , ` globals ` , ` dir ` ,` id `
4646 - Objects: ` callable ` , ` delattr ` , ` getattr ` , ` hasattr ` , ` setattr `
4747
48- Python operators include :
48+ Python operators also are :
4949
5050 - Arithmetic ` + ` , ` - ` , ` * ` , ` / ` , ` ** ` , ` // ` , ` % `
5151 - Indexing: ` [ `
@@ -56,7 +56,7 @@ Python operators include:
5656 - Assignment: ` = ` , ` += ` , ` -= ` , ` *= ` , ` /= ` , ` **= ` , ` %= ` , ` //= `
5757 - Ordering and comparison: ` < ` , ` > ` , ` <= ` , ` >= ` , ` == ` , ` != `
5858
59- The following are some examples for above functions:
59+ The following are some examples for the above functions:
6060
6161``` python
6262divmod (6 ,4 )
@@ -118,7 +118,7 @@ hex(id(x)) # this is the address of the object x in memory
118118# '0x1048d7f10'
119119```
120120
121- ## Libraries
121+ ## Library
122122
123123Python includes a very extensive standard library that offering a wide
124124range of facilities. We can categorize the below modules as follows:
@@ -136,7 +136,7 @@ range of facilities. We can categorize the below modules as follows:
136136 - Software packaging and distribution: ` venv `
137137 - Launching parallel tasks: ` concurrent.futures `
138138
139- The following shows some of the above libraries’ applications .
139+ The following are some of applications of the above modules .
140140
141141### Miscellaneous operating system interfaces (` os ` )
142142
0 commit comments