如何使用 optparse 将命令行参数拆分为选项和位置参数?

发布于 2024-12-21 00:16:10 字数 246 浏览 1 评论 0原文

例如,如果我

test.py -a SOMETHING 1 2 3  

在选项解析后给出,我想要两个列表:

>> print opt
>> ['-a', 'SOMETHING']

>> print args
>> ['1', '2', '3']

是否可以使用 optparse 来做到这一点?

For example, if I give

test.py -a SOMETHING 1 2 3  

after option parsing, I want two lists:

>> print opt
>> ['-a', 'SOMETHING']

>> print args
>> ['1', '2', '3']

Is it possible to do this using optparse?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

允世 2024-12-28 00:16:10

查看 optparse 文档 似乎你可以这样做:

import optparse

parser = optparse.OptionParser()
parser.add_option("-a", action="store", type="string", dest="a")

(opt, arg) = parser.parse_args()
print "Opt:", opt
print "Arg:", arg

如果我使用你的命令行 python test.py -a SOMETHING 1, 2, 3 它打印:

Opt: {'a': 'SOMETHING'}
Arg: ['1', '2', '3']

这看起来非常接近所需的结果。

如果您确实必须将选项作为列表,您可以在上面的代码中添加类似的内容:

o = list()
for k in vars(opt):
    o.append(k)
    o.append(getattr(opt, k))
print "List Opt:", o

对我来说,打印:

List Opt: ['a', 'SOMETHING']

Looking at the optparse documentation it seems like you can do this:

import optparse

parser = optparse.OptionParser()
parser.add_option("-a", action="store", type="string", dest="a")

(opt, arg) = parser.parse_args()
print "Opt:", opt
print "Arg:", arg

If I run this using your command line python test.py -a SOMETHING 1, 2, 3 it prints:

Opt: {'a': 'SOMETHING'}
Arg: ['1', '2', '3']

which seems very close to the desired result.

If you really must have the options as a list, you could add something like this to the code above:

o = list()
for k in vars(opt):
    o.append(k)
    o.append(getattr(opt, k))
print "List Opt:", o

For me this prints:

List Opt: ['a', 'SOMETHING']
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文