Answers for "argparse choice"

1

argparse accept only few options

...
parser.add_argument('--val',
                    choices=['a', 'b', 'c'],
                    help='Special testing value')

args = parser.parse_args(sys.argv[1:])
Posted by: Guest on May-08-2020
2

python argparser flags

parser.add_argument("-v", "--verbose", action="store_true",
                    help="verbose output")
Posted by: Guest on April-01-2020
0

python argparse choice

parser.add_argument('--list',
                    default='all',
                    const='all',
                    nargs='?',
                    choices=['servers', 'storage', 'all'],
                    help='list servers, storage, or both (default: %(default)s)')
Posted by: Guest on February-19-2021
0

argparse choices

>>> parser = argparse.ArgumentParser(prog='game.py')
>>> parser.add_argument('move', choices=['rock', 'paper', 'scissors'])
>>> parser.parse_args(['rock'])
Namespace(move='rock')
>>> parser.parse_args(['fire'])
usage: game.py [-h] {rock,paper,scissors}
game.py: error: argument move: invalid choice: 'fire' (choose from 'rock',
'paper', 'scissors')
Posted by: Guest on April-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language