Python IDEs:
- IDE stands for “Integrated Development Environment
- IDE is a software
- IDE is used to develop and execute your application easily.
- Every programming language is providing an official IDE.
- Python official IDE is called IDLE.
- IDLE will be installed along with Python software.
Opening IDLE: We can search in the programs and open.
- It opens the shell window as follows
- We can execute simple command in shell window
- We can write programs in editor window.
- Take the “new” option from File menu in shell window.
- It opens “untitled” editor window.
Untitled empty window as follows:
- Write your code and Save with .py extension.
- You can choose any location in your computer to save the file.
Choose the location and save as follows:
- Run the code by click on Run module option from Run menu,
- We can use the shortcut f5
We can see the output of code on shell window.