Python creates the first project

Open the pycharm editor

Click New Project to create a new project.

 

 Mainly modify the project name and project path, keep the others as default, and click Create.

After the editor creates the project, we create a Python file by right-clicking the project name, clicking New, and then clicking Python File. 

Write the file name and press the Enter key on the keyboard to confirm.

The python file is created successfully, and we can write code. As we enter in the code:

print('hello world!')
print('你好,世界!')

Let's right-click to run the code

We see that the string is printed successfully.

The first python code was written successfully!

Guess you like

Origin blog.csdn.net/mr_five55/article/details/135322950