I'm new to Python. The file "main.py" must call the file "add.py". I want to invoke the interpreter as
python main.py add John Doe Some Possible Names
That is variable length for sys.argv. I want from within main.py to call for add.py and pass it all the arguments except add and main.py. How can I do this?