First Python Program Python comes preinstalled with an integrated development environment(IDE) known as IDLE But we can install any IDE of our choice, for this we will be using sublime text Click https://www.sublimetext.com/download to download sublime text Double click on the downloaded executable files to install it. Python IDLE Python IDLE ( Integration Development Environment ) is the Python IDE that comes with the Python distribution. Python IDLE is also known as interactive interpreter. It has a number of features such as text editor with syntax highlighting, smart indent and auto completion, etc., that help you work with Python quickly. The following illustrates how to launch Python IDLE and write the Python code inside the text editor: Launch Python IDLE Launch Python IDLE New Python Shell window will display as follows: Python IDLE Enter the following code and press Enter , the message “Hello World” will display in the next line. Python
Learn to Code With Daniel Tano.