Install and Run Python in Windows

  1. Go to Download Python Links to an external site.page on the official site and click Download Python 3.6.0 (You may see different version name).
  2. When the download is completed, double-click the file and follow the instructions to install it. When Python is installed, a program called IDLE is also installed along with it. It provides graphical user interface to work with Python.
  3. Open IDLE, copy the following code below and press enter.
  4. print("Hello, World!")
  5. To create a file in IDLE, go to File > New Window(Shortcut: Ctrl+N).
  6. Write Python code (you can copy the code below for now) and save (Shortcut: Ctrl+S) with .pyfile extension like: hello.py or your-first-program.py 

                       print("Hello, World!")

  1. Go to Run > Run module(Shortcut: F5) and you can see the output. Congratulations, you've successfully run your first Python program.