Home >Backend Development >Python Tutorial >How to run py files with pycharm
The methods to run Python scripts in PyCharm are: 1. Open the project; 2. Find the file; 3. Click the run button (toolbar button or shortcut key); 4. View the output.
How to run Python scripts in PyCharm
Running Python scripts in PyCharm is very simple, here is how to do it :
1. Open the project
First, use PyCharm to open the project containing the Python script you want to run.
2. Locate the file
In the project folder, find the Python script you want to run.
3. Click the Run button
There are two ways to use the Run button:
Shift
F10
(Windows/Linux) or Cmd
Shift
R
(MacOS). 4. View the output
After the script runs, PyCharm will display the output in the "Run" tab at the bottom of the window.
Other options
In addition to using the run button, there are other options for running Python scripts:
<code>python 文件名.py</code>
Note:
The above is the detailed content of How to run py files with pycharm. For more information, please follow other related articles on the PHP Chinese website!