gpt4 book ai didi

python optparse 在选项后获取指定数量的参数

转载 作者:行者123 更新时间:2023-12-01 04:45:19 25 4
gpt4 key购买 nike

./hello_world -c arg1 arg2 arg3

是否可以通过编码使选项 -c 仅获得两个参数(arg1 和 arg2)?

parser.add_option("-c",
action="append2", <--- maybe something like that?
dest="verbose",
help="make lots of noise [default]")

最佳答案

您可以使用 nargs 属性。

例如:

parser.add_option("-c", nargs=2, dest="verbose", help="make lots of noise [default]")

关于python optparse 在选项后获取指定数量的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29572783/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com