如何使用argparse将任意字符串定义为可选参数?例子:[user@host]$ ./script.py FOOBAR -a -bRunning "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?
添加回答
举报
0/150
提交
取消