Commit b55d9e3e authored by Ezio Melotti's avatar Ezio Melotti

#14034: merge indentation fixes from 3.2.

parents 49233c4e 9ab3fdd8
...@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment