Python Installation

Python Installation on Windows

You can get latest Python from its Official Site https://www.python.org/downloads/.

You need to download only the binary code applicable for your platform and install Python.

After Download you need to open it like below:

Then click on install and select last checkbox to set python in your windows environment like below:

After successfully complete installation you need to close the window like below:

Now the Python install on your Machine successfully if you want to check the version on your machine then open CMD and type below command:

python --version

In this case you don't need to set python path on your machine manually like below.

Print Hello World using Python.

Open CMD and type python then enter and simply write below code :

print("Hello World");

No comments: