Skip to content

Commit 835cfb1

Browse files
authored
Update 12-Modules.md
1 parent 355773f commit 835cfb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/12-Modules.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Python installers for the Windows platform usually include the [entire stand
88
* os - operating system interfaces
99

1010

11-
> In addition to the standard library, there is a growing collection of several thousand components (from individual programs and modules to packages and entire application development frameworks), available from [PyPI](https://pypi.python.org/pypi) , which you are free to explore after getting comfortable using some of th built in modules .
11+
> In addition to the standard library, there is a growing collection of several thousand components (from individual programs and modules to packages and entire application development frameworks), available from [PyPI](https://pypi.python.org/pypi) , which you are free to explore after getting comfortable using some of the built in modules .
1212
1313
### How do we use them ?
1414
> We can import modules which are available under [standard library](https://docs.python.org/3/library/index.html) by using _from_ , _as_ and _import_ keyword .
@@ -94,7 +94,7 @@ print(sample([10, 20, 30, 40, 50], k=4)) # >>> [30, 40, 20, 50]
9494
9595
```python
9696
import os
97-
#changs current working directory to test directory inside current directory
97+
#changes current working directory to test directory inside current directory
9898
os.chdir("./test")
9999

100100
os.getlogin() # >>> 'Nishchith'

0 commit comments

Comments
 (0)