Hi All,
How we can run our python in windows? In this tutorial, I am going to show that.
Step 1: Install Python in Window
Download the Full Installer
Follow these steps below:
- Open any browsers go to the Python.org Downloads page for Windows.
- Click the link for the Latest Python 3 Release – Python 3.x.x under the “Python Releases for Windows” .
- Select either Windows x86-64 executable installer for 64-bit or Windows x86 executable installer for 32-bit.
Run the Installer
Run the installer by double-clicking on the downloaded file. A dialog box like the one below will appeared. Click install.
Step 2: Install MU software
Download the correct 32 bit or 64 bit installer for your operating system.
To find out whether you need a 32 bit or 64 bit installer:
Click I agree and Next.
Step 3 : Run Python Script
Write a script below and save in basic.py
print("Hello World")
Open the cmd. Go to location of python script for example basic.py.
Run this command.
python basic.py You will get the output Hello World.
Done.. Voila !!!