python argparse like --home-path
python argparse like --home-path
我有一个问题,我找不到答案。这是我的代码块:
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('-t', '--test', help='just for testing')
parser.add_argument('--home-path', help='specify the homepath')
args = parser.parser_args()
if args.test:
print('Test')
如何像测试参数一样访问“--home-path”参数?
只需将属性名称中的-
替换为_
即可:
args = parser.parse_args()
if args.home_path:
# Do stuff
此行为记录在 dest
in ArgumentParser.add_argument()
:
For optional argument actions, the value of dest
is normally inferred
from the option strings. ArgumentParser
generates the value of dest
by
taking the first long option string and stripping away the initial --
string. If no long option strings were supplied, dest
will be derived
from the first short option string by stripping the initial -
character. Any internal -
characters will be converted to _
characters
to make sure the string is a valid attribute name.
我有一个问题,我找不到答案。这是我的代码块:
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('-t', '--test', help='just for testing')
parser.add_argument('--home-path', help='specify the homepath')
args = parser.parser_args()
if args.test:
print('Test')
如何像测试参数一样访问“--home-path”参数?
只需将属性名称中的-
替换为_
即可:
args = parser.parse_args()
if args.home_path:
# Do stuff
此行为记录在 dest
in ArgumentParser.add_argument()
:
For optional argument actions, the value of
dest
is normally inferred from the option strings.ArgumentParser
generates the value ofdest
by taking the first long option string and stripping away the initial--
string. If no long option strings were supplied,dest
will be derived from the first short option string by stripping the initial-
character. Any internal-
characters will be converted to_
characters to make sure the string is a valid attribute name.