What is a Python?
![]() |
| Guido van Rossum |
Developed by Dutch programmer Guido van Rossum, the programming language was first released in 1991. It was called Python Version 0.9.0. Then in 2000 Python 2.0 was released. Then, with the rise of Python 2.7, Python 3 was introduced. Currently (April 2021) Python 3.9.4 Stable release has been released.
We look forward to continuing the Python tutorial.
Check Your bit version on Windows
- Go to Desktop
- Right Click on The This Pc icon ( My Computer )
- In the sub-menu that appears, select Properties
- Under the system in the window that appears, the Bit version is shown as System Type
- It is specified as 32 Bit (x86) or 64 Bit
Download Python
Download Links
- Latest - Python 3.9.4
- Python 3.7
- Visit the official website for other releases
Install Python
Check Installation
Follow the steps below to make sure Python is installed correctly
1. Open the Command Prompt (Start -> Cmd). Type python -v and enter. If the downloaded version is displayed, the installation will be successful.
C:\Users\iLabAcademy>python -V
Python 3.9.4
2. Then open Python IDLE by searching for Python in the Start Menu. This is a Python Interpreter (we will talk about this later). Type the following code in the Python Idle
>>> print ("Hello, World!")
Hello, World
Hello, World! Appears to go.
Congratulations you have successfully installed Python.
Essential Post-Installation Steps on Windows
Once you have finished running the Python installer, follow these critical verification steps to ensure your Windows command line is configured properly:
- Verify Python and Pip in Command Prompt:
Open Windows Terminal or CMD and run the following commands to confirm your installation version:
python --version pip --version - Fix 'python is not recognized' Error:
If Windows outputs that 'python is not recognized', the executable was not added to your system environment variables. Open System Properties > Environment Variables, find
Pathunder User variables, and add the installation path (usuallyC:\Users\<YourUsername>\AppData\Local\Programs\Python\Python3xand itsScriptsdirectory). - Setting Up a Virtual Environment (venv):
Always create isolated environments for your coding projects to avoid package version conflicts:
python -m venv myenv myenv\Scripts\activate
Frequently Asked Questions
Q: Should I install Python from python.org or the Microsoft Store?
A: We strongly recommend downloading the installer directly from the official python.org website, as it gives you full control over custom installation paths, pip integration, and environment variables.





0 Comments