保存在名为test.py的文件中的简单代码:
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("configName", help = "enter config file name") # positional argument, filepath
args = parser.parse_args()
print(args.configName)
我在命令控制台中输入以下行:
test.py testinput.txt
我要做的就是确保argparser正在获取我的输入并打印该输入。该代码使用位置参数,因此命令行中不需要其他任何内容,但是,我收到以下错误:
usage: test.py [-h] configName
test.py:error: the following arguments are required: configName
我在做什么错了?