如何在Python中使用getopt/OPTARG?如果给出太多参数 (9),如何转移参数?

发布于 2024-11-16 09:19:35 字数 33 浏览 4 评论 0原文

如何在Python中使用getopt/optarg?

How to use getopt/optarg in Python?

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

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

发布评论

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

评论(3

梦在深巷 2024-11-23 09:19:35

这是我如何做到这一点的一个示例,我通常使用相同的基本模板:

import sys
import getopt

try:
    opts, args = getopt.getopt(sys.argv[1:], 'm:p:h', ['miner=', 'params=', 'help'])
except getopt.GetoptError:
    usage()
    sys.exit(2)

for opt, arg in opts:
    if opt in ('-h', '--help'):
        usage()
        sys.exit(2)
    elif opt in ('-m', '--miner'):
        miner_name = arg
    elif opt in ('-p', '--params'):
        params = arg
    else:
        usage()
        sys.exit(2)

我认为没有 9 个参数的限制。

This is an example of how I do it, I usually use the same basic template:

import sys
import getopt

try:
    opts, args = getopt.getopt(sys.argv[1:], 'm:p:h', ['miner=', 'params=', 'help'])
except getopt.GetoptError:
    usage()
    sys.exit(2)

for opt, arg in opts:
    if opt in ('-h', '--help'):
        usage()
        sys.exit(2)
    elif opt in ('-m', '--miner'):
        miner_name = arg
    elif opt in ('-p', '--params'):
        params = arg
    else:
        usage()
        sys.exit(2)

I don't think there is any 9 parameter limit.

小姐丶请自重 2024-11-23 09:19:35

谷歌搜索会有帮助。看看 getoptargparse 标准库中的模块:

import argparse

parser = argparse.ArgumentParser(description='Process some integers.')
parser.add_argument('integers', metavar='N', type=int, nargs='+',
                   help='an integer for the accumulator')
parser.add_argument('--sum', dest='accumulate', action='store_const',
                   const=sum, default=max,
                   help='sum the integers (default: find the max)')

args = parser.parse_args()
print args.accumulate(args.integers)

然后按预期运行:

$ prog.py -h
usage: prog.py [-h] [--sum] N [N ...]

Process some integers.

positional arguments:
 N           an integer for the accumulator

optional arguments:
 -h, --help  show this help message and exit
 --sum       sum the integers (default: find the max)

当使用适当的参数运行时,它会打印命令的总和或最大值-line 整数:

$ prog.py 1 2 3 4
4

$ prog.py 1 2 3 4 --sum
10

这是直接来自标准库。

A google search would have helped. Have a look at the getopt and argparse modules in the standard library:

import argparse

parser = argparse.ArgumentParser(description='Process some integers.')
parser.add_argument('integers', metavar='N', type=int, nargs='+',
                   help='an integer for the accumulator')
parser.add_argument('--sum', dest='accumulate', action='store_const',
                   const=sum, default=max,
                   help='sum the integers (default: find the max)')

args = parser.parse_args()
print args.accumulate(args.integers)

Then run it as expected:

$ prog.py -h
usage: prog.py [-h] [--sum] N [N ...]

Process some integers.

positional arguments:
 N           an integer for the accumulator

optional arguments:
 -h, --help  show this help message and exit
 --sum       sum the integers (default: find the max)

When run with the appropriate arguments, it prints either the sum or the max of the command-line integers:

$ prog.py 1 2 3 4
4

$ prog.py 1 2 3 4 --sum
10

This is straight from the standard library.

七堇年 2024-11-23 09:19:35

您是否尝试过阅读模块 getopt 的 python 文档 (http://docs.python.org/library/getopt.html?highlight=getopt#module-getopt)?它提供了如何使用 getopt 的简单示例。移位参数是什么意思?如果要检查用户使用的参数是否超过 9 个,可以检查 sys.argv 列表的长度,该列表包含传递给脚本的所有选项/参数。第一个元素是调用的脚本的名称,因此长度始终至少为 1。您可以执行以下操作:

if len(sys.argv) > 10
    print('Too many arguments.')

Have you tried reading the python docs for the module getopt (http://docs.python.org/library/getopt.html?highlight=getopt#module-getopt)? It provides a simple example of how the getopt is used. What do you mean by shift arguments? If you want to check that the user does not use more than 9 arguments, you can check the length of the sys.argv list, which contains all the options/arguments passed to the script. The first element is the name of the script which is invoked, so the length is always at least 1. You could do something like:

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