I am writing a Python script that has to call a second python script which has input fields. The normal way to call the second script in Linux command window is:
python 2ndpythonscript.py input_variable output_variable
Now, I want to call this script from inside the first script. How do I do it? Thanks in advance.