Home > Article > Backend Development > How to create a new project in python
Some friends who are learning python asked how to create a new project in python. Next, I use pycharm (an integrated development environment mainly used for python programming) to show you how to create a new python project.
Steps to write a new project in pycharm:
The first step is to create a new project: File->New Project (base below Just fill in the installed python path in the interpreter).
The second step is to create a new python file: right-click on the project->New->Python File.
The third step is to write the "hello world" code.
The fourth step is to run the code and check the results.
The above is the detailed content of How to create a new project in python. For more information, please follow other related articles on the PHP Chinese website!