In this short guide, you’ll see how to run one Python script from another Python script.
More specifically, you’ll see the steps to:
- Run one Python script from another
- Call a specific variable from one Python script to another
But before we begin, here is a simple template that you may use to run one Python script from another (for Python scripts that are stored in the same folder):
import script_name_to_call
Steps to Run One Python Script From Another
Step 1: Place the Python Scripts in the Same Folder
To start, place your Python scripts in the same folder.
For example, let’s suppose that two Python scripts (called python_1 and python_2) are stored in the same folder:
python_2
The ultimate goal is to run the python_2 script from the python_1 script.
Step 2: Add the Syntax
Next, add the syntax to each of your scripts.
For instance, let’s add the following syntax in the python_1 script:
import python_2 print('what are you up to?')
Where:
- The first line of ‘import python_2’ in the python_1 script, would call the second python_2 script
- The second line of the code simply prints the expression of ‘what are you up to?’
Now let’s add the syntax in the python_2 script:
print('hello world')
In this case, the expression of ‘hello world’ would be printed when running the second script.
Note that you must first save the syntax that was captured in the python_2 script before calling it from another script.
Step 3: Run One Python Script From Another
Now you’ll need to run the script from the python_1 box in order to call the second script.
Notice that the results of the python_2 script would be displayed first, and only then the results of the python_1 script would be displayed:
hello world
what are you up to?
Call a Specific Variable from One Python Script to Another
Let’s now see how to call a specific variable (which we will call ‘x’) from the python_2 script into the python_1 script.
In that case, you’ll need to edit the syntax in the python_1 script to the following:
import python_2 as p2 print(p2.x)
Next, assign a value (e.g., ‘hello world’) to the ‘x’ variable in the python_2 script:
x = 'hello world'
Don’t forget to save the changes in the python_2 script.
Finally, run the syntax from the python_1 script, and the ‘hello world’ expression would be printed:
hello world
Interaction of Variables from the Two Scripts
In the final section of this guide, you’ll see how variables from the two scripts may interact.
For example, let’s suppose that the python_1 script has the variable of y = 2, while the python_2 script has the variable of x = 5. The goal is to sum those two variables and display the results.
First, modify the syntax in the python_1 script to the following:
import python_2 as p2 y = 2 print(p2.x + y)
Then, change the syntax in the python_2 script to:
x = 5
As before, don’t forget to save the changes in the python_2 script.
Finally, run the syntax from the python_1 script, and you’ll get ‘7’ which is indeed the sum of the two variables:
7