Python's own IDE is opened as follows
Install the python development environment, open the search box, type IDLE, press Enter, open this application, and also start a wonderful python journey.
The editor at this time is in interactive mode. We can also click file-new-file to create a new file, where you can write the complete code at one time, and then save and execute it, which is much more convenient than the interactive mode.
as follows
Detailed process
Start-Program-Python 2./3.- IDLE (Python GUI)
This opens the Python Shell- File- New window (Ctrl+N)
The python editor appeared
Write code such as
print('HelloWorld')
Then save the file as helloworld.py (please remember to add the py extension, it will not be added automatically by default).
Press F5 in the editor window to see the result in Python Shell.
Content expansion:
How to open python ide
Recommended Posts