微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在 Python 中,使用 argparse,只允许正整数

如何解决在 Python 中,使用 argparse,只允许正整数

这应该可以利用type. 您仍然需要定义一个实际的方法来为您决定:

def check_positive(value):
    ivalue = int(value)
    if ivalue <= 0:
        raise argparse.ArgumentTypeError("%s is an invalid positive int value" % value)
    return ivalue

parser = argparse.ArgumentParser(...)
parser.add_argument('foo', type=check_positive)

这基本上只是一个改编自docs on中的perfect_square函数的示例。argparse

解决方法

标题几乎概括了我想要发生的事情。

这就是我所拥有的,虽然程序不会在非正整数上崩溃,但我希望用户被告知非正整数基本上是无稽之谈。

import argparse
parser = argparse.ArgumentParser()
parser.add_argument("-g","--games",type=int,default=162,help="The number of games to simulate")
args = parser.parse_args()

和输出:

python simulate_many.py -g 20
Setting up...
Playing games...
....................

输出为负:

python simulate_many.py -g -2
Setting up...
Playing games...

现在,显然我可以添加一个 if 来确定if args.games是否定的,但我很好奇是否有办法在argparse关卡中捕获它,以便利用自动使用打印。

理想情况下,它会打印出类似这样的内容:

python simulate_many.py -g a
usage: simulate_many.py [-h] [-g GAMES] [-d] [-l LEAGUE]
simulate_many.py: error: argument -g/--games: invalid int value: 'a'

像这样:

python simulate_many.py -g -2
usage: simulate_many.py [-h] [-g GAMES] [-d] [-l LEAGUE]
simulate_many.py: error: argument -g/--games: invalid positive int value: '-2'

现在我正在这样做,我想我很高兴:

if args.games <= 0:
    parser.print_help()
    print "-g/--games: must be positive."
    sys.exit(1)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。