First Python Program


To execute the python program first we need
1) To download the python software with latest version. You can found it on https://www.python.org/downloads/
2) Install it with double click and complete the necessary steps.
3) Launch the python IDLE
4) For script mode go to file>new.

As I told you before we have two modes to execute python code. First is interpreter mode and the second is script mode.

Let us execute with both way.

1) On the interpreter (not to use script file). This is how it looks.



On Script Mode:
  

 To execute code on interpreter mode you need to press enter.
 To execute the code on script mode you can click on run option from menu or press F5.


Comments