Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b55d9e3e
Commit
b55d9e3e
authored
May 06, 2012
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Plain Diff
#14034: merge indentation fixes from 3.2.
parents
49233c4e
9ab3fdd8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
78 additions
and
78 deletions
+78
-78
Doc/howto/argparse.rst
Doc/howto/argparse.rst
+78
-78
No files found.
Doc/howto/argparse.rst
View file @
b55d9e3e
...
@@ -181,7 +181,7 @@ Now, how about doing something even more useful::
...
@@ -181,7 +181,7 @@ Now, how about doing something even more useful::
parser = argparse.ArgumentParser()
parser = argparse.ArgumentParser()
parser.add_argument("square", help="display a square of a given number")
parser.add_argument("square", help="display a square of a given number")
args = parser.parse_args()
args = parser.parse_args()
print(args.square**2)
)
print(args.square**2)
Following is a result of running the code:
Following is a result of running the code:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment