使用argparse,将任意字符串作为参数传递给脚本

如何使用argparse将任意字符串定义为可选参数?


例子:


[user@host]$ ./script.py FOOBAR -a -b

Running "script.py"...

You set the option "-a"

You set the option "-b"

You passed the string "FOOBAR"

理想情况下,我希望论点的位置无关紧要。IE:


./script.py -a FOOBAR -b== ./script.py -a -b FOOBAR==./script.py FOOBAR -a -b


在BASH中,我可以在使用时完成此操作getopts。处理所有所需的开关,在的情况下环后,我有这样一行shift $((OPTIND-1)),并从那里我可以访问使用标准的所有剩余的参数$1,$2,$3,等...

不类似的东西exisit为argparse?


MM们
浏览 258回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python