From d16abf805d7ce05b71baac5ac4aff162063bdeda Mon Sep 17 00:00:00 2001 From: sayampradhan <112542130+sayampradhan@users.noreply.github.com> Date: Fri, 14 Oct 2022 23:18:42 +0530 Subject: [PATCH] Format Document --- 01_hello/hello04_argparse_positional.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/01_hello/hello04_argparse_positional.py b/01_hello/hello04_argparse_positional.py index 5d9a5e921..c95e24c77 100755 --- a/01_hello/hello04_argparse_positional.py +++ b/01_hello/hello04_argparse_positional.py @@ -3,7 +3,7 @@ import argparse -parser = argparse.ArgumentParser(description='Say hello') -parser.add_argument('name', help='Name to greet') +parser = argparse.ArgumentParser(description="Say hello") +parser.add_argument("name", help="Name to greet") args = parser.parse_args() -print('Hello, ' + args.name + '!') +print("Hello, " + args.name + "!")