How do I install Python on Windows?

Step 1: At first, download Python installation software from Python’s official site: https://www.python.org

python site

Step 2: Open the downloaded Python Setup file and double click on it then see the Python installation dialog box and click on the Install Now box for direct installation if you want to customize then you click on the Customize installation box.

ppi

Step 3: After clicking on Install Now box then click Yes and see start the \setup progress.

Python install

Step 4: After finishing it, then just click on Finish Button.

Step 5: Then automatically open a Python interpreter window,

python interpreter

  • If want to open GUI Python IDLE, then you go to on Start button →All Programs → Click on Python 3.7 Folder → Click on IDLE Python 3.7 then the GUI Python IDLE is open. If you want to create a simple Python program you just write :

    >>> print(" Welcome to Webeduclick.com")

    Output :
    pi-program

  • If you want to create a Python file and write the program into it then at first go to on Start button → All Programs → Click on Python 3.7 Folder → Click on IDLE Python 3.7 then the GUI Python IDLE is open. Go to the File menu and click on New File then an untitled name window is opened. You write the full program correctly and save it. Then go to the Run menu and click on Run Module, Then you can see the program’s output.