Is there a way to pass --as a value to a Python program using argparse without using the equals (=) sign?
The command line arguments I added to argparser are defined below:
parser.add_argument('--myarg', help="my arg description")
You should use this argument in the following program:
python myprogram.py --myarg value123
Is there a way to run this program with - as a value instead of "value 123"?
i.e
python myprogram.py --myarg --
source
share