Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 490ccbd commit 0d0a6f1Copy full SHA for 0d0a6f1
Doc/tutorial/stdlib.rst
@@ -78,8 +78,9 @@ and an optional number of lines to be displayed::
78
79
import argparse
80
81
- parser = argparse.ArgumentParser(prog = 'top',
82
- description = 'Show top lines from each file')
+ parser = argparse.ArgumentParser(
+ prog='top',
83
+ description='Show top lines from each file')
84
parser.add_argument('filenames', nargs='+')
85
parser.add_argument('-l', '--lines', type=int, default=10)
86
args = parser.parse_args()
0 commit comments