File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ aids for working with large modules like :mod:`os`::
3636 <returns an extensive manual page created from the module's docstrings>
3737
3838For daily file and directory management tasks, the :mod: `shutil ` module provides
39- a higher level interface that is easier to use::
39+ a higher- level interface that is easier to use::
4040
4141 >>> import shutil
4242 >>> shutil.copyfile('data.db', 'archive.db')
@@ -63,7 +63,7 @@ wildcard searches::
6363Command-line arguments
6464======================
6565
66- Common utility scripts often need to process command line arguments. These
66+ Common utility scripts often need to process command- line arguments. These
6767arguments are stored in the :mod: `sys ` module's *argv * attribute as a list. For
6868instance, let's take the following :file: `demo.py ` file::
6969
7777 ['demo.py', 'one', 'two', 'three']
7878
7979The :mod: `argparse ` module provides a more sophisticated mechanism to process
80- command line arguments. The following script extracts one or more filenames
80+ command line arguments. The following script extracts one or more filenames
8181and an optional number of lines to be displayed::
8282
8383 import argparse
You can’t perform that action at this time.
0 commit comments