I don't know how to execute a program with optional arguments on Spyder. I know how to pass variables to it, but my program uses argparse, and I want to execute it with the "-h" or "--help" option, the code is the following one
import argparse
parser = argparse.ArgumentParser()
parser.parse_args()
For now, it only has the default optional argument of "-h"/"--help", I tried putting it on "Command line options" but it doesn't work.