mirror of
https://github.com/python/cpython.git
synced 2025-11-17 09:30:10 +00:00
#14034: fix indentation.
This commit is contained in:
parent
6cc7a41c2f
commit
9ab3fdd8cb
1 changed files with 78 additions and 78 deletions
|
|
@ -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:
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue