Python optparse 值实例

发布于 2024-08-11 18:12:06 字数 360 浏览 4 评论 0原文

我如何获取 opt 结果

opt, args = parser.parse_args()

并将其放入字典中? Python 将 opt 称为“值实例”,但我找不到任何方法将值实例转换为列表或字典。人们不能以这种方式从 opt 复制项目,

for i in opt:
 myDict[i] = opt[i]

相反,它很笨拙,

myDict[parm1] = opt.parm1
myDict[parm2] = opt.parm2

这意味着每次我添加一个选项时,我也必须更新此代码;应该有办法让它自行解决。

How can I take the opt result of

opt, args = parser.parse_args()

and place it in a dict? Python calls opt a "Values Instance" and I can't find any way to turn a Values Instance into a list or dict. One can't copy items from opt in this way,

for i in opt:
 myDict[i] = opt[i]

instead, its a clumsy,

myDict[parm1] = opt.parm1
myDict[parm2] = opt.parm2

which implies that every time I add an option, I have to update this code as well; there should be a way to let this take care of itself.

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

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

发布评论

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

评论(1

葬シ愛 2024-08-18 18:12:06
options, args = parser.parse_args()
option_dict = vars(options)

(来源是这篇 python-ideas 帖子。)

options, args = parser.parse_args()
option_dict = vars(options)

(Source is this python-ideas post.)

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