Step by Step to Install Python
- Download Install file for latest Python or the version that suits your application from this link.
- Python Install file can be downloaded from here.
- Download and click on the install file.
- Choose a folder to install the Python files.
- Click check box "Add Python x.x to Path"
- This enables you to run python commands from command prompt from any folder.
#Hello World Program in Python - This is a comment line
Print ("Hello World")
#Comment line starts with a hash symbol
#Print is the command to display messages
- Save this file to a path by pressing Ctrl + S.
- Press F5 to run this program.